module Faker::NamePH

def last_name

def last_name
  case rand(2)
  when 0
    AUTOCHTHONOUS_SURNAMES.rand
  else
    SPANISH_SURNAMES.rand
  end
end