module FFaker::EducationCN

def location

def location
  case rand(0..2)
  when 0 then fetch_sample(PROVINCE)
  when 1 then fetch_sample(CITY)
  when 2 then fetch_sample(POSITION)
  end
end