xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(100);
}
function draw() {
background(100);
for(y=10; y<height; y+=30)
{
for(x=10; x<width; x+=30)
{
r= random(50)
fill(random(255));
ellipse(x, y, r , r);
}
}
}