Here are my two Arraylists and how do I add one to the other
private ArrayList<String> myStringList= new ArrayList<String>();
private ArrayList<String> newStringList= new ArrayList<String>();
I would like to add all the strings which are in myStringList to newStringList.
Can anyone help me with this ?