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

Thomas Kleist
Thomas Kleist
6,888 Points

Did you initialize the array with values by specifying a set of comma-delimited values inside a pair of curly braces?

I can not see that I'm doing anything wrong here,

CodeChallenge.cs
var lapTimes = new double[4];
lapTimes[0]=2.2;
double[] finalLapTimes = new double[] {2.2,2.3,2.5};

2 Answers

It appears that you have missed the 4th value in your finalLapTimes

Thomas Kleist - The challenge requirement for that stage says

Declare and initialize another array of doubles named finalLapTimes with the following times: 2.2, 2.3, 2.5, 2.8.

so you're missing the 2.8. It was a bit too wide to fit on the same line of the challenge parameter, so it dropped down to the next.

Thomas Kleist
Thomas Kleist
6,888 Points

I just saw it. .but the error message was not very precise.

I agree. The Treehouse challenges could use a little fine-tuning, in my opinion