Удалить предмет с начала массива
let first = fruits.shift() // remove Apple from the front
// ["Banana"]
Ronnie
let first = fruits.shift() // remove Apple from the front
// ["Banana"]