I really need help on 1.5.5 mario Karel on Codehs public class MarioKarel extends Karel
{
public void run()
{
move();
turnLeft();
move();
move();
move();
collectCoins();
turnLeft();
turnLeft();
move();
move();
move();
turnLeft();
move();
collectCoins();
move();
turnLeft();
move();
move();
turnLeft();
move();
collectCoins();
move();
turnRight();
move();
move();
turnRight();
move();
collectCoins();
move();
move();
move();
turnLeft();
private void turnRight()
{
turnLeft();
turnLeft();
turnLeft();
}
private void collectCoins()
{
takeBall();
takeBall();
}
I don't know what I'm doing wrong