function setup() {
createCanvas(500,400);
}
function draw() {
stroke(255, 255, 255);
fill(255, 110, 90);
ellipse(250, 200, 300, 300);
rect(245, 40, 10, 240);
ellipse(190, 200, 70, 70);
ellipse(190, 100, 70, 70);
}
remix the code in p5js editor
select play button
rearrange objects to make a face
ellipse(x, y, width, height)
fill(R, G, B)
take a screenshot