Create an array of your favorite 4 movies. Print out the 0th element in the array. Now set the 0th element to be “Star Wars” and try printing it out again.

my_favorite_movies = ["Pulp Fiction", "Inception", "Fight Club", "The Dark Knight"]

print(my_favorite_movies[0])
my_favorite_movies[0] = "Star Wars"
print(my_favorite_movies[0])