What does this snippet of code do? birds = ["robin", "finch", "grackle", "crow", "wren"] for i in birds: print(i) It counts the number of birds in the list. It prints the index and then each bird name. It prints each bird name on a separate line. It prints each index number on a separate line.