### ---------------------------------- ### MINIMUM TECHNICAL REQUIREMENTS ### ### ---------------------------------- #I am going to be creating something to cheer on th Vikings. # Prior to building: # Describe what you want your program to do. stage.set_background("footballfield") # 1) Create a list. You can use one # of our default lists. my_list = ["red", "orange", "gold", "green", "blue", "purple"] b = codesters.Star(-185, -100, 5, 10, "gold") d = codesters.Star(-155, -50, 5, 10, "gold") f = codesters.Star(-125, 0, 5, 10, "gold") # 2) Use a Loop through List block. # See activity 17 for a reminder about how # looping through a list works. for value in my_list: # add code here a = codesters.Star(-200, -125, 5, 10, value) c = codesters.Star(-170, -75, 5, 10, value) e = codesters.Star(-140, -25, 5, 10, value) g= codesters.Star(0, 80, 5, 150, value) stage.wait(.25) # 3) Add more actions in your loop h = codesters.Sprite("football") h.go_to(-250, 50) h.glide_to(0, 66) h.say("Go Vikings!!!") h.set_say_color("gold") stage.wait(.25) h.glide_to(300, 50)