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 trialHerman Morales
8,831 PointsI don`t understand what means lap3, is a variable is an array? what is? I already played in many different ways.
i dit try with finalLapTimes [4], and other ways and I don't know what means lap3
double[] lapTimes = new double[4];
lapTimes[0] = 2.2;
double[] finalLapTimes = {2.2, 2.3, 2.5, 2.8};
double lap3 = lapTimes;
finalLapTimes[3] = lap3;
1 Answer
Jennifer Nordell
Treehouse TeacherHi there, Herman Morales ! It doesn't explicitly say it but it's expecting you to create a new variable of type double
named lap3
which you did. It wants you to get the third item of the finalLapTimes
and assign it to the variable lap3
. To get the third item you need to target the second index.
double lap3 = finalLapTimes[?];
Replace the question mark with the appropriate index. Hope this helps!