STEP 6: In this program, you will pick from three lists of six images each to make a mixed-up character. We'll start with the lists of image labels for the head!

  • From , drag another List of Strings into the top section of your program just under stage_list.
  • Change the new list name from my_list to head_list.
  • Give head_list 6 string values: "head1", "head2", "head3", "head4", "head5", "head6".

######################################################################## # PLACE LIST CREATIONS HERE # ######################################################################## stage_list = ["moon", "mars", "jupiter", "pluto", "space", "city"] ######################################################################## # PLACE ALL OTHER CODE BELOW THIS # ######################################################################## stage_image = stage_list[1] stage.set_background(stage_image)