You now use vectors and basic STL containers.
Vectors grow and shrink automatically
push_back adds elements, pop_back removes them
size() returns the count, empty() checks if empty
Vectors replace arrays in most C++ code
Good job. You have dynamic storage now. Next, you will learn maps and sets for fast lookups.