# Create a variable `movie_title` and set it to "Back to the Future". movie_title = "Back to the Future" # Create a variable `movie rating` to hold the rating and set it to `8`. movie_rating = 8 # Make a print statement to print this that says `The rating for is ` print('The rating for', movie_title, 'is', movie_rating)