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 trialKeyanna Owens
3,498 PointsHello 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.
var coordinates = [
["x", "y"]
["love", "joy"]
["breakfast", "dinner"]
["start", "finish"]
]
<!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
231,269 PointsYou 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
3,498 PointsKeyanna Owens
3,498 PointsOooooh, I see. Thank you, I appreciate your help! I always seem to mess up on syntax.