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 trialMinseok Kim
2,708 PointsPlease with my solution
I don't understand why my code doesn't even print out the prompt.
right = []
wrong = []
var questions_and_answers = [
["how many eggs?", 1],
["how many boys in the classroom?", 9],
["how many girls in the classroom?", 7]
]
for (i=0; i<questions_and_answers.length; i+=1) {
answer = parseInt(prompt(questions_and_answers[i][0]))
if ( answer === questions_and_answers[i][1] ) {
right.push(questions_and_answers[i][0]);
else {
wrong.push(questions_and_answers[i][0]);
}
}
}
document.write("You got " + correct.length + " questions right")
document.write("you got these questions right")
for (i=0; i<right.length; i+=1) {
document.write(right[i])
}
document.write("you got these questions wrong")
for (i=0; i<wrong.length; i+=1) {
document.write(wrong[i])
}
1 Answer
Steven Parker
231,236 PointsThe brace on line 16 is out of place. It should go before the "else" on line 14.
Also, on line 20 you have "correct" (which has not been defined) instead of "right".