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 trialtorincorty
1,278 PointsI am encountering the error that asks me if i indexed into the third item of the "finalLapTimes" array..
I thought the third item in the arrray would be [2] but I'm uncertain now
double[] lapTimes = new double[4]; lapTimes[0] = 2.2;
double[] finalLapTimes = new double[4]{2.2,2.3,2.5,2.8};
double lap3 = double finalLapTimes[2];
1 Answer
Steven Parker
231,198 PointsYou have the right index number.
But you only need to declare the type of new variable being created (on the left side of the assignment). On the right side, you need only the array name and the index.