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