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

Arrays

Set the first double in the array to 2.2.

CodeChallenge.cs
double[] lapTimes = new double[4];
double[0] lapTimes = "2.2";

1 Answer

Eric M
Eric M
11,545 Points

Hi Winston,

Once the array is declared we no longer need to put its type ahead of it. You access the array indices on the variable name itself.

For instance, if I wanted to access the third element of the lapTimes array and store it in a new variable I would use

var third_element = lapTimes[2];

Best of luck,

Eric