xxxxxxxxxx
19
//random color
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
for (let i = 0; i < width; i += 20) {
if (mouseX > i && mouseX < i + 20) {
fill(random(i), random(i), random(i));
} else {
fill("white");
}
rect(i, 0, width / 20, height);
}
}