You can try using this:
List<String> list = ..;
//Add items to your list
list.add(“ABC”);
list.add(“XYZ”);
String[] arrayName = list.toArray(new String[0]);
toArray() method will return an array containing all of the elements in the list in a proper sequence.