xxxxxxxxxx
function setup() {
createCanvas(800, 800); background(0);
let i,x,y,r,g,b;
for (i=05; i<200; i=i+1)
{
x=int(random(600));
y=int(random(600));
strokeWeight (3);
strokeWeight (6);
r=int(random(255));
g=int(random(255));
b=int(random(255)); stroke(r,g, b);
fill(r,g,b);
circle(x,y,05);
circle(x,y,09);
circle(x,y,01);
circle(x,y,0.75);
}
}