C# programing TestScoreList?

Write a program named TestScoreList that accepts eight int values representing student test scores.

Display each of the values along with a message that indicates how far it is from the average.
An example of how the results should be output is as follows:
Test # 0: 89 From average: 6
Test # 1: 78 From average: -5
...

Does anyone have any idea on how to create this program? From what I can tell it wants me to create an array. 

EddieJ2021-04-06T02:31:22Z

Hi, mark,

You need to create an array to store the values so you can use them later.If all you needed to do was calculate the average, you could just add each value to a total as you read it in and then discard the test score.You should have examples of how to create an array.  If not, how would your teacher expect you to know how to do that?