Let's create a project. Go to Solution Explorer, right-click on the name of the website, select Add, and click on Class. Name the class Records and click on OK. When the Visual Studio message comes up, click on Yes. You will be storing records of some kind--it doesn't really matter what type of records you'll be storing. Click on OK, then on Yes.
Now one of the instance variables for this class will be an array. So enter the following below the open curly brace under public class Records:
public double [] records = new double[] { 1, 8, 9, 1, -8, -3, -458 };
It really doesn't matter what values you put into the array.
Again, for our purposes, you can probably delete the constructor for the class. You know this because we already have the value of the instance variables set inside the class itself; you don't have to make it.
...