xxxxxxxxxx
var col = [];
function setup(){
createCanvas(400,600);
for(var i=0; i<1000; i++){
col[i] = color(random(100),random(100),random(100),70);
stroke(col[i]);
line(random(width),random(height),random(width),random(height));
}
}