xxxxxxxxxx
16
let r, g, b;
function setup() {
createCanvas(300, 300);
frameRate(1);
}
function draw() {
r = floor(random(0, 256));
g = floor(random(0, 256));
b = floor(random(0, 256));
background(255);
fill(r, g, b);
point(150, 150);
}