module FFaker::RandomUtils

def shuffle(list)

so that the results are deterministic.
copy of `list`) except that it uses the internal Random Number Generator
Performs same action as as `Array#suffle` (returns a randomly-reordered
def shuffle(list)
  list.shuffle(random: FFaker::Random)
end