function removeWithoutCopy(arr, item) {
  for(let i=arr.length-1;i>0;i--){
    if(arr[i] === item){
      arr.splice(i,1)
    }
  }
  return arr
}