xxxxxxxxxx
function setup() {
createCanvas(600,600);
background(100);
noLoop();
}
function draw() {
var righteye = random (30,80);
var lefteye = random(10,30);
var rightpupil = random (5,20);
var leftpupil = random (3,15);
var mouhtH = random (30,80);
var mouthW = random (50,150);
const black =color (0,0,0);
const blue =color (68,163,271);
const orange=color (255,69,0);
fill (blue);
square(200,200,250,30);
noFill();
circle(275,280,lefteye);
noFill();
circle(375,280,righteye);
fill(black);
circle (275,280,leftpupil)
fill(black);
circle (375,280,rightpupil);
fill(orange)
rect(280,400,mouthW,mouhtH,10)
}