// Helene Martin, CSE 143 // Demonstrates basic ArrayList usage. import java.util.*; public class ArrayListDemo { public static void main(String[] args) { //String[] people = new String[6]; ArrayList people = new ArrayList(); people.add("Courtney"); people.add("Roee"); people.add(1, "Mike"); System.out.println(people); System.out.println(people.size()); // size changes automatically } }