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