xxxxxxxxxx
18
let x
let y
let d
function setup() {
createCanvas(600, 600);
background (220)
}
function draw() {
noStroke()
x=random(0, width)
y=random(0,height)
d=random(4, 80)
fill(random(10,255), random (10,255), random (10,255),100)
rect(x, y, d, d)
}