xxxxxxxxxx
12
function setup() {
createCanvas(1920/2, 1080/2);
background('#fbfbfb');
}
function draw() {
const min = 0;
const max = 255;
const x = random(width);
stroke(random(min, max), random(min, max), random(min, max));
line(x, 0, x, height);
}