Consegui resolver o exercício com o código abaixo, mas tentei durante um bom tempo implementar usando um "for" na "function mudaCor()" e não consegui chegar num resultado, alguém tem uma dica de como funcionaria usando essa condição?
<meta charset="utf-8">
<canvas width="600" height="400"></canvas>
<script>
var tela = document.querySelector('canvas');
var pincel = tela.getContext('2d');
pincel.fillStyle = 'grey';
pincel.fillRect(0, 0, 600, 400);
var cores = ["blue", "red", "green"];
var rgb = 0;
function desenhaCirculo(evento) {
var x = evento.pageX;
var y = evento.pageY;
pincel.fillStyle = cores[rgb];
pincel.beginPath();
pincel.arc(x , y, 10, 0, 2 * 3.14);
pincel.fill();
}
function mudaCor() {
rgb++;
if (rgb == cores.length)
rgb = 0;
return false;
}
tela.oncontextmenu = mudaCor;
tela.onclick = desenhaCirculo;
</script>