SE450
:
The ArrayList class
[39/53]
Insert and remove elements in the middle
countries.add(1, "Germany");
countries.remove(0);
Not efficient--use linked lists if needed frequently