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.

Fernando Arias
3,139 PointsI seem to be stuck on this do.. while loop challenge.. Can someone please be of assistance?
I seem to be stuck with the do while loop challenge. Please help ?
3 Answers

Jennifer Nordell
Treehouse TeacherThe code is all there already it just needs to be reordered. Take a look:
var secret;
do {
secret = prompt("What is the secret password?");
} while ( secret !== "sesame" );
document.write("You know the secret password. Welcome.");
First we declare secret but give it no value. Then we start our do while loop and we keep asking the user for the secret password until they type "sesame". When they do type the correct password we write a welcome message to the document. Hope this helps!

Fernando Arias
3,139 PointsAh! PERFECT, I was over complicating it! Thank you.

Fernando Arias
3,139 PointsAh! PERFECT, I was over complicating it! Thank you.