function remove(arr, item) {
var arr2 = arr.filter(value=>{
return value != item
})
return arr2
}