module FFaker::RandomUtils

def rand(max = nil)

used in place of `rand` or `Kernal.rand`.
Returns a randon number from the internal Random Number Generator. Can be
def rand(max = nil)
  FFaker::Random.rand(max)
end