sampleSize
Gets n random elements at unique keys from an array up to the size of the array.
- Shuffle the array using the Fisher-Yates algorithm.
- Use
Array.prototype.slice()to get the firstnelements. - Omit the second argument,
n, to get only one element at random from the array.