// background
setBackgroundImage(spaceship);
// question style
textFont(Bubblegum, 22);
fill(255,255,255);
// question
words("Where does it says I love you with an everlasting love?",30,400);
// answers style
fill(0,128,128);
textFont(Bubblegum, 24);
// answer 1
words("Isaiah 31:3",150,340);
// answer 2
words("Jeremiah 31:3",150,260);
//wrong answer
if (answer == 1) {
fill(255,255,255);
textFont(Bubblegum,32);
words("Try again!",220,100);
image(evilGomox,10,0,180,210);
}
//correct answer
if (answer == 2) {
fill(255,255,255);
textFont(Bubblegum,32);
words("Awesome!",220,100);
image(happyGomox,10,0,180,210);
}