console
let x=0
let y=0
let eye=30
let first=0
let eyeball=10
function setup(){
createCanvas(600,600);
background(200);
colorMode(HSB,360,100,100,1)
rectMode(CENTER);
colorMode(HSB,360,100,100)
}
function draw(){
fill(random(360),100,100);
ellipse(280,265,300,300);
fill(255);
noStroke(440,110);
ellipse(210,220,120,40);
ellipse(350,220,120,40);
ellipse(300,365,140,60);
fill(420,110,110);
ellipse(230,220,15,15);
ellipse(370,220,15,15);
noStroke();
fill(275,160,45);
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.1.9/p5.min.js"></script>