There is a lot of code to enter in this chapter, but it's mechanical. First, we will create an array, so enter the following between the curly braces under the line beginning with protected void Button1_Click...:
IEnumerable<int> scores = new int[] { 45, 98, 99, 78, 89, 87, 77, 67, 71, 81 };
Here, IEnumerable is the data type and scores is the name of the array. It doesn't matter what values you put into the array.