How would I write the code to fix the function for for the drawBunny function to draw the Bunny as described, and supply the color of his ears and spot as a parameter
Extracted text: # Bunny with a spot * Source: CMU CS Academy https://academy.cs.cmu.edu/collection/1180/2/exercise 4 def drawBunny(bunnyColor): Rect(e, 0, 400, 400, fill-gradient('dodgerBlue', 'deepSkyBlue')) 6. #Change the ears below to use the parameter of the function as the fill. 208 Fix Youur Code Here ### Oval (155, 110, 60, 170) Oval (245, 110, 60, 170) Oval (155, 115, 40, 140, fill-gradient('seashell', 'wheat', start='bottom')) Oval (245, 115, 40, 140, fill-gradient('seashell' 7. 8. 10 11 12 13 14 15 "wheat", start-"bottom) 幸 head Oval (200, 23e, 200, 160, fill="white ) Circle(150, 300, 80, fil1='white") Circle(250, 300, 80, fil1='white") 16 17 18 19 20 21 22 23 24 25 26 i nose Polygon(180, 310, 220, 310, 200, 350) Dran the spot around the eye, 8 Place Your Code Here ### Oval (150, 275, 30, 50) Oval (150, 270, 10, 20, fill='white') Oval (250, 275, 30, 50) Oval (250, 270, 10, 20, fill white) 28
Extracted text: