xxxxxxxxxx
23
let col;
function setup() {
createCanvas(400, 400);
background(0);
col = ["#212129", "#E23939", "#FFFFFF", "#000000"];
}
function draw() {
background(220);
rectangle();
}
function rectangle(){
for(let z = 0; z < 20; z++){
e = floor(random(3))
x1 = random(400);
x2 = random(400);
y1 = random(100);
y2 = random(100);
fill(col[e]);
ellipse(x1, x2, y2, y2);
}
}