xxxxxxxxxx
16
const LOWERCASE = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'];
const UPPERCASE = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'];
function setup() {
createCanvas(400, 400);
frameRate(24);
}
function draw() {
background(0, 50);
fill(255);
textAlign(CENTER);
textSize(960);
text(random(LOWERCASE), 200, 200);
text(random(UPPERCASE), 200, 200);
}