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 trialJustin Naling
6,133 Pointsnot sure why my answer is incorrect
let coordinates = [
["", 23, 33]
];
1 Answer
Moira Lawrie-Martyn
8,073 PointsThe question calls for an empty array, then nest a second array with 2 numbers inside, then add two more arrays with 2 numbers:
var coordinates = [
[2, 3],
[2, 3],
[4, 5]
];
With your code, you've got an empty string in the nested array which is resulting in the checker throwing an error.
Jason Anders
Treehouse Moderator 145,860 PointsJason Anders
Treehouse Moderator 145,860 PointsModerator edit: Changed response from Comment to Answer.