[1, 2, 3, 4, 2], 2
[1, 3, 4]
function remove(arr, item) { return arr.filter(x=>{ return item!==x; }); }