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