Can you find two ways to create a list?

movies = ["T2", "Matrix", "Dark Knight"]movies = list(("T2", "Matrix", "Dark Knight"))movies = ("T2", "Matrix", "Dark Knight")movies = "T2", "Matrix", "Dark Knight"

Right! In the first case, we create a list directly. In the second case, we convert a tuple to a list.

Make sure you're not creating a tuple, and that you're using the right syntax!