Print a Multiline Ingredient List

The code below prints a list of ingredients on a single line. Use the newline escape character to format the list correctly into multiple lines. Add \n where needed to match the expected output.
ingredients = ['Spaghetti', 'Eggs', 'Parmesan Cheese', 'Bacon', 'Black Pepper'] message = 'Ingredients:' for ingredient in ingredients: # adjust the following line...
message += '- ' + ingredient
print(message) #### expected: #### # Ingredients: # - Spaghetti # - Eggs # - Parmesan Cheese # - Bacon # - Black Pepper
Python
Setting up Python environment...
Output