how to start arraylist code example
Example 1: initialize arraylist
ArrayList<Type> list = new ArrayList<Type>(Arrays.asList(
elem1, elem2,..., elemN
));
Example 2: how to make a new arraylist java
ArrayList<Type> name = new ArrayList<Type>();