array in c++
xxxxxxxxxx
// int is the type that you want the array to store.
// myarray is the name of your array.
// the 4 means that you have exactly 4 items in this array.
// whatever is inside of the curly braces are the initial starting numbers of the array.
int myarray [4] = { 0, 3, 2, 1}