xxxxxxxxxx
15
function setup() {
createCanvas(windowWidth, windowHeight);
// background("#272F39");
background("white");
textSize(12);
textFont('monospace');
fill(0, 255, 0);
}
function draw() {
const emojis = ["🎉", "🎊", "🥳", "💖", "🌈"];
const emoji = emojis[floor(random(0, emojis.length))];
// text("0", random(0, width), random(0, height));
text(emoji, random(0, width), random(0, height));
}