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.

Shawn Williams
14,762 PointsThis code only shows that I got one question right if I enter all answers correctly.
var html; var quiz; var answer; var response; var correctAnswer = 0;
var questions = [ ["What language do you use to add interactivity to web pages?", 0], ["What language do you use to style web pages?", 3], ["What language do you use to build the structure of web pages?", 5] ];
for( var i = 0 ; i < questions.length ; i += 1) { question = questions[i][0]; answer = questions[i][1]; response = parseInt(prompt(question)); correctAnswer = 0; if ( response === answer ) { correctAnswer += 1; } }
function print(message) { document.write(message); }
html = ("You answered" + " " + correctAnswer + " " + "correctly"); print(html);
2 Answers

james south
Front End Web Development Techdegree Graduate 33,258 Pointsyou seem to be resetting correctAnswer to 0 in each iteration of the loop

Shawn Williams
14,762 PointsOh I sure was, removing "correctAnswer = 0" from for if loop did the trick. Thank you.