function remove(arr, item) {
  return arr.filter(num => {
    return num != item
  })
}