Hapus item dari awal array

let first = fruits.shift() // remove Apple from the front
// ["Banana"]
Ronnie