xxxxxxxxxx
19
var words = ["rainbow", "friendship", "magic", "treehouse", "kitten"];
var index = 0
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
textFont(32);
text(words[index], 20, 200);
}
function mousePressed() {
index = Math.floor(random(0, words.length));
}