xxxxxxxxxx
19
let phrase = "I wish to wash my Irish wristwatch.";
function setup() {
createCanvas(800, 600); // Create a canvas
}
function draw() {
background(255);
textSize(32);
textAlign(CENTER, CENTER);
fill(0);
for (let i = 0; i < phrase.length; i++) {
let x = random(width);
let y = random(height);
text(phrase[i], x, y);
}
}