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

Elfar Oliver
Elfar Oliver
3,924 Points

What does "Bummer: Did you include the value to the right of the assignment operator?" mean?

I'm doing the same thing he's doing in the video and I can't get past this

CodeChallenge.cs
double[] lapTimes = new double[4] lapTimes[0] = "2.2";
Elfar Oliver
Elfar Oliver
3,924 Points

And then my error is on 7,38. Newsflash, it's only one line so wtf

Mark Sebeck
Mark Sebeck
Treehouse Moderator 37,353 Points

Good job Elfar. I changed your comment to an answer and marked it the best.

1 Answer

Elfar Oliver
Elfar Oliver
3,924 Points

Got it

double[] lapTimes = new double[4]; lapTimes[0] = 2.2;