xxxxxxxxxx
15
function setup() {
createCanvas(windowWidth, windowHeight);
strokeWeight(8);
stroke('orange');
fill('blue');
}
function draw() {
background(220, 20, 20);
ellipse(120, 120, 50, 50);
ellipse(150, 200, 50, 50);
ellipse(220, 160, 50, 50);
ellipse(250, 250, 50, 50);
}