Java - List, ArrayList

List list = new ArrayList();

// add object to the list
String s = "Hello World!";
list.add(s);