module FFaker::PhoneNumber

def exchange_code

def exchange_code
  # The North American Numbering Plan (NANP) does not permit the digits 0
  # and 1 as the leading digit of the exchange code.
  # https://en.wikipedia.org/wiki/North_American_Numbering_Plan#Numbering_system
  area_code
end