The documentation for Array#sample says it can take an rng:
If rng is given, it will be used as the random number generator.
How can a range function as a random number generator, or why is such thing useful?
Also the hash form suggests there are other options, but I can't find anything about them. Trying out [1,2,3,4,5].sample(3) behaves just like [1,2,3,4,5].sample(3, random: 1..2).