Method changelist replaces each String in the list by both its lower case and upper case equivalents. Thus if the original list contained [He11o,NewYork], then new list will contain [he11o, HELLO, newyork, NEWYORK]. Use the listIterator add and remove methods to write an efficient implementation for linked lists of method changeList:
public static void changeList (LinkedList<String> theList )