function makeClosures(arr, fn) {
return arr.map((item,index)=>{
return ()=>fn(arr[index])

})

}