Finish the following code to create an animation where the c…

Finish the following code to create an animation where the color of the circle is set according to the output of a function called generateColor. // fill in the code after TODO // TODO: comment your name here void setup(){size(200, 200);frameRate(5);} void draw(){// TODO: get a color by calling the function below  // TODO: draw an ellipse of size 40×40 at the mouse location using that color} Color generateColor(){// TODO: generate and return a random color (not gray scale)}