// DrJava saved history v2 LinkedList myList = new LinkedList();//End of Interaction// myList.add("hello");//End of Interaction// myList.add("goodbye");//End of Interaction// myList.add(1, "wrong number");//End of Interaction// myList.toString()//End of Interaction// int size = myList.size();//End of Interaction// myList.set(size, "oops");//End of Interaction// myList.add(((String)myList.get(0)).substring(1,5));//End of Interaction// myList.set(-2, "hey");//End of Interaction// myList.add(((String)myList.get(0)).substring(3,5))//End of Interaction//