Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

C# C# Objects Encapsulation and Arrays Arrays

Josh Lee
Josh Lee
4,707 Points

I think I'm doing this right but it's says I'm doing something wrong...

When i try to submit my answer, it says that I haven't indexed into the array. Not sure what I'm missing. Any help would be appreciated!

CodeChallenge.cs
double[] lapTimes = new double[4];
lapTimes[0] = 2.2;

var lap3;
double[] finalLapTimes = {2.2, 2.3, 2.5, 2.8}
lap3 = finalLapTimes[3];

1 Answer

On your finalLapTimes array make sure your doing pretty much the same thing you did for lapTimes. As in use the keyword new to create a new instance of the double array then use the curly braces with a comma separated list of values you want to put in.

double[] finalLapTimes = new double[]{2.2, 2.3, 2.5, 2.8};
var lap3 = finalLapTimes[2];

also the final challenge asks for the 3rd item in the array to be assigned to the variable lap3. An array starts with index 0 so make sure you start your counting at 0, which means that the 3rd item would actually be at index 2.

Hope I helped.