function count(arr, item) {
            return arr.filter(i=>i==item).length
        }