var answer = ""; background(255, 255, 0); textSize(15); textAlign(CENTER, CENTER); fill(0); text("Click here for a very important question", 200, 200); var mouseClicked = function() { while(answer !== "yes") { answer = prompt("Do you like Brussels sprouts? (yes)", "no"); } image(getImage("food/brussels-sprouts"), 0, 0, width, height); textSize(50); fill(); text("Me too", 200, 200); };