void setup() { size(400, 400); background(255); ellipse(200, 200, randomSize(), randomSize()); } float randomSize() { return random(50, 150); }