xxxxxxxxxx
25
/* the code below uses random() to draw a different lollipop every frame. repair the code so that the lollipop would draw once during setup(), and only get redrawn on mouseClicked()
*/
let r;
function setup() {
createCanvas(400, 400);
r = random(30, 90);
}
function draw() {
background(220);
noStroke();
//purple lollipop
fill(255);
rect(width / 2 - 5, height / 2, 10, 100);
fill(180, 29, 159);
ellipse(width / 2, height / 2, r, r);
}
function mouseClicked(){
r = random(30, 90);
}