public class PhoneRecordReaderCSV
{
   public PhoneRecordReaderCSV(String fileName)
   {
   }

   /**
    * Returns an ArrayList of records read from the file. 
    * If no records were read returns an empty array. 
    * The return value should never be null.
    * If file cannot be read, prints an error message
    */
   public ArrayList<PhoneRecord> getRecords()
   {
   }
}