module FFaker::Address

def city

def city
  case rand(0..3)
  when 0 then format('%s %s%s', city_prefix, Name.first_name, city_suffix)
  when 1 then format('%s %s', city_prefix, Name.first_name)
  when 2 then format('%s%s', Name.first_name, city_suffix)
  when 3 then format('%s%s', Name.last_name, city_suffix)
  end
end