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