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

JavaScript JavaScript Foundations Arrays Getting and Setting

Nazaam Kutisha
Nazaam Kutisha
7,667 Points

Help with Challenge

To me it looks like my syntax is passable. Yet, this line of code isn't passing the challenge. Does anyone have any suggestions?

<h1>JavaScript Foundations</h1>
    <h2>Arrays: Getting and Setting</h2>
    <script>
      var myArray = ["sugar", "rush", "fix", "it", 3.14, 42];
        myArray[2] = "thirdElementInArray";

2 Answers

The only change you have to do in that code is replace the 3 with a 2:

 var thirdElementInArray = myArray[2];
Nazaam Kutisha
Nazaam Kutisha
7,667 Points

Brilliant!! that worked thanks.