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