void setup() { size(400, 400); } void draw() { background(230); float x = random(0, width); line(x, 0, x, height); }