xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
}
function draw() {
background(211, 211, 211);
strokeWeight(1);
noLoop();
for(let i = 0; i < 100; i++) {
stroke(0);
line(width/2, height/2, random(width), random(height));
}
}