What if we want to remove a value from the beginning of an array, though? Again, there's a method for that.

Awesome! shift() removes a value from the beginning and moves, or shifts, all the other values to a lower index.

Didn't we use pop() to remove the value at the end of the array?