Respuesta :

function start(){

   for(var i=0; i<5; i++){

       jumphurdle();

   }

}

function turnright(){

   turnLeft();

   turnLeft();

   turnLeft();

}

function jumpHurdle(){

   move();

   move();

   turnLeft();

   move();

   turnRight();    

   move();

   turnLeft();

}