xxxxxxxxxx
22
let phrase = "I wish to wash my Irish wristwatch.";
let index = 0;
function setup() {
createCanvas(800, 400);
textSize(32);
textAlign(CENTER, CENTER);
fill(0);
background(255);
}
function draw() {
if (index < phrase.length) {
let x = random(width);
let y = random(height);
text(phrase[index], x, y);
index++;
} else {
noLoop();
}
}