Why are ArrayLists better than arrays?
ArrayLists can hold more kinds of objects than arrays.
You can put more items into an ArrayList than into an array.
You don't have to decide the type of an ArrayList when you first make it.
You don't have to decide the size of an ArrayList when you first make it.