Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Keyanna 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
216,083 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.