Return the remaining elements of an array after chopping off n elements from the head.
The head means the beginning of the array, or the zeroth index.
Here are some helpful links:
function slasher(arr, howMany) {
var removed = arr.splice(0, howMany);
console.log('RETURN => ', arr);
overlay(JSON.stringify(arr));
return arr;
}