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 Loops, Arrays and Objects Tracking Multiple Items with Arrays Create a Two Dimensional Array

Keyanna Owens
Keyanna Owens
3,498 Points

Hello everyone! I am on the third task of the two-dimensional arrays challenge

I can't find what i did wrong. Whenever I enter the code, it says task 1 is no longer passing. If someone could help me see what mistake i made, I would be grateful.

script.js
var coordinates = [
  ["x", "y"]
  ["love", "joy"]
  ["breakfast", "dinner"]
  ["start", "finish"]
  ]
index.html
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JavaScript Objects</title>
</head>
<body>
<script src="script.js"></script>
</body>
</html>

1 Answer

Steven Parker
Steven Parker
229,644 Points

You forgot the separators.

Any syntax error invalidates the entire script; and since the challenge re-checks the tasks in order, it can misinterpret the problem as being in "task 1".

But the actual issue is that between the individual sub-arrays, you need commas (",").

Keyanna Owens
Keyanna Owens
3,498 Points

Oooooh, I see. Thank you, I appreciate your help! I always seem to mess up on syntax.