xxxxxxxxxx
20
function setup() {
createCanvas(400, 400);
background("#fae282")
stroke("white")
noFill()
strokeWeight(10)
}
function draw() {
background("#fae282")
print(random(395,400))
ellipse(Math.random()*400, Math.random()*400, 100)
for (let i =0; i<400;i++){
ellipse(Math.random()*400, Math.random()*400, 100)
}
print("x:",mouseX,"Y:",mouseX)
}