function makeClosures(arr, fn) {
    return arr.map(item => {
        return fn.bind(this, item)
    })
}