By now you should know that you can control how long Zumi drives by increasing how many times the code repeats and that you can change the speed Zumi drives at. There is a new parameter for driving forward called “angle” that will determine Zumi’s heading. When you are telling Zumi which angle to drive at, it is relative to the direction where Zumi began, which is 0 degrees. The direction “0 degrees” will always stay the same, just like how North, South, East, and West are always the same directions, no matter how many times you turn.
In this case, think of “North” as 0 degrees. North or 0 is set when the code starts. Let’s try driving Northwest. What angle or heading corresponds to that direction? Try changing the angle to 30.
To prove that the angle does not mean “turn that many degrees”, repeat that whole code twice with a repeat block.
Did you notice that it continued in the same direction instead of turning another 30 degrees the second time? This is because the headings will always stay the same relative to where Zumi started facing.