Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Christian Ahm
706 PointsI 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?
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
28,538 PointsYou 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
706 PointsChristian Ahm
706 PointsThank you very much