xxxxxxxxxx
19
let fillColor;
function setup() {
createCanvas(windowWidth, windowHeight);
fillColor = 255;
}
function draw() {
background(220, 10, 120);
fill(fillColor);
ellipse(width / 2, height / 2, 100);
}
function keyPressed() {
fillColor = random(256);
}