if I ge
ArrayList<String> myList;
// add some stuff to myList
ArrayList<String> copyOf=myList;
copy will be a reference to myList, thus if I change copyOf, myList will change to. Hpw can I make coyyOf be a copy of myList, so if copyOf chnages, myList will not change.