xxxxxxxxxx
14
let e="🍇✂️🐑🍷☘️🌱🌿💕";
function setup() {
createCanvas(400, 400);
frameRate(5);
}
function draw() {
background(220);
i=2*floor(random(8));
textSize(60);
textAlign(CENTER,CENTER);
text(e.substring(i,i+2),width/2,height/2);
}