summaryrefslogtreecommitdiff
path: root/src/node_modules/chance/docs/helpers/shuffle.md
blob: dc80097135c279bf809d894a2154c9e688865177 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# shuffle

```js
// usage
chance.shuffle(array)
```

Given an array, scramble the order and return it.

```js
chance.shuffle(['alpha', 'bravo', 'charlie', 'delta', 'echo']);
=> ['echo', 'delta', 'alpha', 'charlie', 'bravo']
```