Dungeon - Fire Dancing

loop {
    this.moveXY(46, 22);
    this.moveXY(34, 22);
}

Apparently this isn’t less than 4 statements.
I don’t see how it differs from the recommended equipment of this.moveRight and this.moveLeft (I also did the code block using while (true) instead of loop{}. )

But alas, this Javascript with moveXY commands seems to be a non-answer.
Fails stating it isn’t less than 4 statements

Arguments count as statements.

loop{
    this.moveRight(1);
    this.moveLeft(1);
}

Would also cause it to fail.

try a while true loop from left to right that should solve it.