Randomly Sorted Results and Array.prototype.map combined
npm install array.prototype.randommapApply the same map operations and get a new array sorted randomly.
``shell`
npm install array.prototype.randommap
`javascript
import 'array.prototype.randommap'
const array = [1, 2, 3, 4, 5, 6];
array.randomMap(item => item * 2);
// [ 8, 12, 2, 6, 4, 10 ]
``