Returns one random item from an array.
Array to pick from.
One uniformly random element from items.
items
randomChoice(["a", "b", "c"]); // "a", "b", or "c" Copy
randomChoice(["a", "b", "c"]); // "a", "b", or "c"
Returns one random item from an array.