X822: LightBot Method Calls 2

For the question below, assume we are working with a simplified LightBot that can perform the following actions

  • Turn Left
  • Turn Right
  • Move Forward
  • Jump

Each of these actions is represented by a method call:

  • Turn Left --> turnLeft()
  • Turn Right --> turnRight()
  • Move Forward --> moveForward()
  • Jump --> jump()

Change the code below so that instead of turning left three times and jumping, the LightBot moves forward three times and then jumps.

Your Answer:

Feedback

Your feedback will appear here when you check your answer.