<PLEASE USE THE FOLLOWING TEMPLATE TO HELP YOU CREATE A GREAT POST!>
The lesson asks me to create a list called middle_third that’s equal to another list called to_21. But… what’s a middle third?
<Below this line, add a link to the EXACT exercise that you are stuck at.>
https://www.codecademy.com/en/courses/python-beginner-en-KAgt5/2/5?curriculum_id=4f89dab3d788890003000096
<In what way does your code behave incorrectly? Include ALL error messages.>
<What do you expect to happen instead?>
I don't think this is necessary but here's my code so far ```pythonto_21 = [x for x in range(1,22)]
odds = to_21[::2]
middle_third = [
<do not remove the three backticks above>