Sometimes it's important to avoid mutating an array. So if we want to remove elements we can't use splice().
Make a function called newRemove that can delete elements but doesn't modify the existing array. It should accept the array, a positive index number at which to start deleting, and the number of elements to remove.
Tip: You can use concat() and slice().