Extend the system so that a user can create, add contacts, and view the list:
The following should be added to the application class that you created in section 5.2.
Write a text-based menu that gives the user the options to 'Create', 'Add', and 'View' the list.
Add three public static void
methods that will be called in response to the user's menu input.
The 'Create' method should create a new instance of the contact list.
The 'Add' method should prompt the user for the data for a single contact, and use this data to construct an instance of the contact class, and add it to the list.
The 'View' method should call the method that displays the contact list.