// Joke Teller
// Andy Harris
// Demonstrates the while loop
var correct = "to get to the other side";
var guess = "";
while (guess != correct){
guess = prompt ("Why did the chicken cross the road?", "");
if (guess == correct){
alert ("Pretty funny, huh?");
} else {
alert ("that's not it...");
} // end if
} // end while