End Google Ads 201810 - BS.net 01 --> I wanted to verify if I am right on this question for college class.

#6. Write a single statement that assigns the values 99, 100 and 88 to an integer array named TestScores. Use the C++ notation used for the “lotterynumbers” array. (4 points)

I came up with...

int TestScores[5];
TestScores[0] = 99;
TestScores[1] = 100;
TestScores[2] = 88;

Correct me if I am wrong

Thank you.