xxxxxxxxxx
22
let yPos = [];
let xPos = [];
function setup() {
createCanvas(400, 400);
textSize(10);
for (let i = 0; i < xPos; i++){
append(xPos,random(400));
}
fill(0,244,0);
stroke(0,244,0);
frameRate(10);
background(0);
}
function draw() {
background(0,0,0,40);
for (let i = 0; i < xPos.length; i++ ){
fill(0,244,0);
text(char(random(913,1024)),xPos[i],yPos[i]);
yPos[i] = yPos[i] + 10;
}
}