xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
}
function draw() {
background(0);
noFill();
for(let x=10; x < width; x+=70){
for (let y=10; y<height; y+=70){
stroke(random(255),0,0);
square(x,y, 55);
}
}
}