List list = new ArrayList(); // optionally add an initial size as an argument list.add(5); // appends to the end of the list list.add(1, 6); // inserts an element at index 1 System.out.println(list.get(0));