so um basically at school we have to use code.org to make stuff and we had to do a project with robot faces that involve randomization, so i chose random colors. its supposed to look like V1 from ULTRAKILL
any ways ur gonna wanna create a "new project" on code.org and click on game lab, then change the code to text and paste this in: background(rgb(randomNumber(0, 256), randomNumber(0, 256), randomNumber(0, 256), randomNumber(0, 256))); strokeWeight(0); fill("black"); shape(130, 100, 150, 50, 250, 50, 270, 100); shape(85, 350, 100, 300, 300, 300, 315, 350); strokeWeight(0); fill(rgb(randomNumber(0, 256), randomNumber(0, 256), randomNumber(0, 256))); shape(150, 50, 0, 150, 75, 400, 100, 300, 100, 200); shape(250, 50, 400, 150, 325, 400, 300, 300, 300, 200); fill(rgb(randomNumber(0, 256), randomNumber(0, 256), randomNumber(0, 256))); shape(100, 300, 300, 300, 300, 200, 266, 100, 134, 100, 100, 200); fill(rgb(36, 38, 37)); ellipse(200, 200, 190, 190); fill("orange"); ellipse(200, 200, 140, 140); fill("yellow"); ellipse(200, 200, 120, 120);