1let myFish = ['angel', 'clown', 'mandarin', 'sturgeon']
2//insert new element into array at index 2
3let removed = myFish.splice(2, 0, 'drum')
4
5// myFish is ["angel", "clown", "drum", "mandarin", "sturgeon"]
6// removed is [], no elements removed
1let myFish = ['angel', 'clown', 'mandarin', 'sturgeon']
2let removed = myFish.splice(2, 0, 'drum')
3
4// myFish is ["angel", "clown", "drum", "mandarin", "sturgeon"]
5// removed is [], no elements removed