Line and line
function setup() {
createCanvas(windowWidth,
windowHeight);
background(90, 90, 90);
frameRate(50);
}
function draw() {
strokeWeight(1);
stroke(frameCount % 255);
line(random(width), 25, random(width), height);
}