0
/ 1.0
For the question below, assume we are working with a simplified LightBot that can perform the following actions
- Turn Left
- Turn Right
- ...
For the question below, assume we are working with a simplified LightBot that can perform the following actions
Each of these actions is represented by a method call:
turnLeft()
turnRight()
moveForward()
jump()
For this problem, you'll be working with a LightBot object named andy
.
Change the code below so that instead of turning left three times and jumping, the LightBot turns right three times and then jumps.
Your feedback will appear here when you check your answer.