var answer = "";
var correct = "4";
var question = "What is 2 * 2?";
for(i = 2; i < 5; i++) {
answer = prompt(question, "0");
if (answer == correct) {
alert("Your answer is correct!");
break;
}
}
Before the break command is executed, how many opportunities does the user have?