You now work with arrays in C++.
1. Arrays store multiple values of the same type
2. Access elements with index starting at 0
3. Loop through arrays with for loops
4. Pass arrays to functions for reusable code
Good job. You can now handle collections of data. Next, you will learn strings for text manipulation.