Challenge Exploding Sun



Make the sun get bigger and BIGGER!



Prepare to animate!



Right now, this program just draws a sun that never moves (boring!). To prepare to animate it, make a draw() function and move all the shape drawing commands inside of it.

Var sunSize = 30
Draw = function() {
// The sun
Fill(255, 204, 0);
Ellipse(200, 298, sunSize, sunSize);
//The land\n
Fill(76, 168, 67);
Rect(0, 300, 400, 100);
};\n