Remove First Element
Given an array 'a', remove the first element of the array using the shift() method and log the resulting array to the console.
const a = ["apple", "banana", "orange"]; // Your code here.
00:00