xxxxxxxxxx
19
var nums = [100, 25, 46, 75];
var num = 23
let x = 0
function setup() {
createCanvas(500, 400);
}
function draw() {
background(0);
for(let i = 0; i < 4; i++)
{
stroke(255);
fill(50);
circle(i * 100 + 100, 200, nums[i])
}
}