String [] Letters = {
"a", ...... , "z",
};
new ArrayList<String> (Arrays.asList(Letters));
Am currently using the above code, which I believe it creates an ArrayList from the Array call Letters(Please correct me if I'm wrong). I need to know how to add a new String into the ArrayList. Any help would be greatly appreciated, thank you.