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.

Christopher Lee
Front End Web Development Techdegree Student 11,698 PointsDo While Loops
I do not know what I am doing wrong. Can someone explain it to me please? Loops are so confusing.
"This is the code we used in the last code challenge. After learning about do...while loops, don't you think this would work better in the do...while style? Re-write the code to use a do...while loop."
var secret= '';
do {
secret = prompt("What is the secret password?");
} while ( secret !== "guess")
document.write("You know the secret password. Welcome.");
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JavaScript Loops</title>
</head>
<body>
<script src="script.js"></script>
</body>
</html>
1 Answer

andren
28,520 PointsYour loop is actually completely fine. The issue is that you seem to have changed the secret word. When the challenge loads the word secret
is compared to is sesame, not guess as you are comparing it to in your loop.
If you fix that issue like this:
var secret= '';
do {
secret = prompt("What is the secret password?");
} while ( secret !== "sesame") // Changed "guess" to "sesame"
document.write("You know the secret password. Welcome.");
Then your code will be accepted.
Christopher Lee
Front End Web Development Techdegree Student 11,698 PointsChristopher Lee
Front End Web Development Techdegree Student 11,698 Pointsthank you!
With you're help I was able to complete the challenge. Loops can be really confusing for me.