module Faker::ArrayUtils

def self.shuffle(array)

def self.shuffle(array)
  array.sort_by{Kernel.rand}
end