✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
The code below has a mistake. Which option correctly identifies it?
function setup() { createCanvas(400, 400); background(220); showAverage(0, 0);}
function showAverage(total, count) { var average = total / count; text(average, width/2, height/2);}