REDUCE and MAP are very different. REDUCE returns one result (though that can be an array) whereas MAP returns a result for every item of the input array. If you try and use HSTACK with MAP, you'd be trying to return increasingly large arrays for each item of the original array, which couldn't possibly work.
Bookmarks