> let array = ["a", "b", "c"]; > let index = 1; > array.splice(index, 1); [ 'b' ] > array; [ 'a', 'c' ]