slasher flicka FreeCodeCamp challenge
function slasher(arr, howMany) {
var removed = arr.splice(0, howMany);
  console.log('RETURN => ', arr);
  overlay(JSON.stringify(arr));
  return arr;
}