Lines of code are instructions for the computer to follow.
When we run code, we tell the computer to follow the instructions we put together.
The order of the instructions matters because the computer follows the instructions line by line.
Arrange three lines, beginning with step_1, followed by step_2, and finally step_3.
>>> step_1 = 1
>>> step_2 = 2
>>> step_3 = 3