loop {
var enemies = this.findEnemies();
var enemyIndex = 0;
// Wrap this logic in a while loop to attack all enemies.
while (enemyIndex < enemies.length) {
var enemy = enemies[enemyIndex];
// "!=" means "not equal to."
if (enemy.type != "sand-yak") {
// While the enemy's health is greater than 0, attack it!
while (enemy.health > 0) {
this.attack(enemy);
}
}
enemyIndex = enemyIndex + 1;
}
// Between waves, move back to the center.
this.moveXY(39, 32);
}
I think the codes are all right but it tells me “unreachable while after return”