Después de pelear con el compilador 1000 veces por fin salió creo ...
function dibujarBarra(x, y, serie, colores, texto) {
escribirTexto(x, y - 10, texto);
var TotalAltura = 0;
for (var cont = 0; cont < serie.length; cont ++)
{
var altura = serie[cont];
dibujarRectangulo(x, y + TotalAltura, 60, altura, colores[cont]);
TotalAltura = TotalAltura + altura;
}
}
var colores = ["blue","green","yellow", "red","gray"];
var serie2009 = [6,47,41,3,3];
var serie2019 = [81,9,3,3,4];
dibujarBarra(50, 50, serie2009, colores, "2009");
dibujarBarra(150, 50, serie2019, colores, "2019");