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

Christian Ahm
Christian Ahm
706 Points

I cant figure out how to set position 3 to lap3. I consider lap3 a string and the array expects a double

Am i supposed to convert lap3 into a double and then put it in the 3rd position?

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

lapTimes[0] = 2.2;

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

1 Answer

andren
andren
28,558 Points

You seem to have misunderstood the question slightly. It does not want you to assign lap3 to the third item of finalLapTimes, but rather the opposite. It wants you to create a variable called lap3 that has the third item of finalLapTimes assigned to it.

Christian Ahm
Christian Ahm
706 Points

Thank you very much