createing arraylist swith string code example
Example 1: initialize arraylist
ArrayList<Type> list = new ArrayList<Type>(Arrays.asList(
elem1, elem2,..., elemN
));
Example 2: java make arraylist
//Create the Arraylist variable: . Replace the T with the type of
//data to be stored in the list.
ArrayList<T> exampleList = new ArrayList<>();
//You can now perform operations on this ArrayList