✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Given the following code, what is displayed on the canvas?
function setup() { createCanvas(400, 400);}
function draw() { background(220); stroke(0, 0, 255); fill(255, 255, 0); rect(mouseX, mouseY, 40, 40);}