Exercise: Insert element into list

Here's your todo list. But, you forgot to add that after waking up and before eating breakfast you wanted to go for a run. Insert the missing task into the appropriate place in the list.
todo_list = ['Wake up', 'Eat breakfast', 'Study Python'] task = 'Go for a run' # enter code here...
print(todo_list) # expected output: ['Wake up', 'Go for a run', 'Eat breakfast', 'Study Python']
Python
Setting up Python environment...
Output