Consider the following example of a LightBot program written out in text. Again, in this case we have named our robot "andy". When would andy jump?

andy.move();
andy.turnRight();
andy.move();
andy.jump();
Jumping will be the FOURTH thing andy does
  • Jumping will be the FIRST thing andy does
  • Jumping will be the SECOND thing andy does
  • Jumping will be the THIRD thing andy does

There are no hints for this question