xxxxxxxxxx
26
let s0 = "thiago, alice, bob, chewbacca, dany, elisa, nic, pepe, hendo";
let words;
let chosenIndex = -1;
function setup() {
createCanvas(windowWidth, windowHeight);
textFont("monospace");
textSize(40);
textAlign(CENTER, CENTER);
fill(255);
words = s0.split(", ");
chosenIndex = floor(random(0, words.length));
noLoop();
}
function draw() {
background(220, 20, 120);
if (chosenIndex > -1) {
text(words[chosenIndex], width / 2, height / 2);
}
}