[SOLVED] Gas Attack Help Please

// Calculate the total health of all the ogres.

function sumHealth(enemies) {
    // Create a variable and set it to 0 to start the sum.
    var totalHealth = 0;
    // Initialize the loop index to 0
    var enemyIndex = 0;
    // While enemyIndex is less than the length of enemies array
    while (enemyIndex < enemies.length) {
       // Add the current enemy's health to totalHealth
       enemies.health += totalHealth;
       // Increment enemyIndex by 1.
       enemyIndex += 1;
    }

    return totalHealth;
}

// Use the cannon to defeat the ogres.
var cannon = hero.findNearest(hero.findFriends());
// The cannon can see through the walls.
var enemies = cannon.findEnemies();
// Calculate the sum of the ogres' health.
var ogreSummaryHealth = sumHealth(enemies); 
hero.say("Use " + ogreSummaryHealth + " grams.");
2 Likes

Instead of this, you should say that a variabile enemy is enemies[enemyIndex] and then add to totalHealth the enemy’s health.

Andrei

2 Likes

This topic was automatically closed 12 hours after the last reply. New replies are no longer allowed.