Question: Method changeList replaces each String in the list by both its lower case and upper case equivalents. Thus if the original list contained [Hello,NewYork], then new list will contain [hello, 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 theList )