Randomizes the order of the specified collection in-place, using the Fisher–Yates shuffle.
Returns a pseudorandom number between 0 and 1.
the collection shuffled
shuffle(["C", "D", "E", "F"]) // => [...] Copy
shuffle(["C", "D", "E", "F"]) // => [...]
Randomizes the order of the specified collection in-place, using the Fisher–Yates shuffle.