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

this doesn't make sense to me

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

CodeChallenge.cs
 double[] lapTimes = new double[4];
lapTimes[0] = 2.2;
 double[] finalLapTimes = new double[4];
lapTimes[0,1,2,3] = 2.2,2.3,2.5,2.8;

3 Answers

You cannot assign values to multiple indexes at once like you are attempting to do. What you can do instead is to assign a group of values to the array when it is initialized, using the exact syntax that the error message is describing to you.

Like this:

double[] lapTimes = new double[4];
lapTimes[0] = 2.2;
double[] finalLapTimes = {2.2, 2.3, 2.5, 2.8};

the key is the curly braces

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

thanks both of you I see what I did wrong I wish I could put you both on best answer but I will just increase the bar on the side :)