xxxxxxxxxx
function setup() {
createCanvas(800, 500);
strokeWeight(2);
background(0);
}
function draw(){
let stripe_width = 5;
for(let i=0; i<width; i+=stripe_width*3){
fill(random(255));
rect(i, 0, stripe_width, height);
}
}