module FFaker::ArrayUtils

def self.random_pick(array, num)

def self.random_pick(array, num)
  warn '[ArrayUtils.random_pick] is deprecated. Please use the ModuleUtils#fetch_sample method'
  fetch_sample(array, count: num)
end