Ok, this is just like the last puzzle, but you need to remember how you used the "if" block and the "repeat" block together.
Blocks
Assemble your blocks here:
9
/ 4
Show Code


while (notFinished()) {
if (isPathForward()) {
moveForward();
}
if (isPathRight()) {
turnRight();
}
if (isPathForward()) {
moveForward();
}
if (isPathRight()) {
moveForward();
}
}
