Which of these statements remove "Charlie" from men, changing the length of the array to 2?

men.shift();men.splice(0, 1);men.pop();men[0] = "Walden";

Sweet! We can use the shift() method or even splice() to remove the first value of the array. pop() removes the last value of the array.

So close! We can use the shift() method or even splice() to remove the first value of the array. pop() removes the last value of the array.