Using the buttons you can visualise how the basic array instance methods work. The array will be displayed and updated as you add or remove items.
.push inserts an umbrella emoji at the end of the array
.unshift inserts a lightning bolt emoji at the beggining of the array
Insert at uses the .splice method to insert a snowman emoji at the chosen index (use the dropdown selector)
.pop removes from the end of the array
.shift removes from the beginning of the array
Remove at uses the .splice to remove from the chosen index (use the dropdown selector)