Randomize the elements in a given array.
npm install array-randomTo get the latest version, simply run
```
npm install array-random --save
`js
const random = require('array-random')
const array = [1,2,3,4,5,6,7,8,9]
const randomized = random(array) // [1,4,3,2,6,8,7,9,5]
``