class Faker::Base

def sample(list)

def sample(list)
  list.respond_to?(:sample) ? list.sample(random: Faker::Config.random) : list
end