Eliminar un elemento del comienzo de una matriz
let first = fruits.shift() // remove Apple from the front
// ["Banana"]
Ronnie
let first = fruits.shift() // remove Apple from the front
// ["Banana"]