[SOLVED] Need help on reindeer wakeup (python)

its me again :sweat_smile: i need some help on this level. im not too sure what im doing wrong. it says they’re all awake and completely skips the fifth deer

# This array contains the status for each reindeer.
deerStatus = [ 'asleep', 'asleep', 'asleep', 'asleep', 'asleep' ]

# And this array contains our reindeer.
friends = hero.findFriends()

# Loop through the reindeer and find the awake ones:
for deerIndex in range(len(friends)):
    reindeer = friends[deerIndex]
    # Reindeer with y position > 30 aren't in a pen.
    # If so, set the reindeer's entry to "awake".
    if reindeer.pos.y > 30:
        deerStatus[deerIndex] = "awake"
        pass
    pass

# Loop through statuses and report to Merek.
for statusIndex in range(len(deerStatus)):
    # Tell Merek the reindeer index and its status.
    # Say something like "Reindeer 2 is asleep".
    hero.say("Reindeer " + statusIndex + " is " + deerStatus[deerIndex])
    pass

nevermind im just an idiot :stuck_out_tongue:

onw other thing:

was it this

there is no deerIndex its deerStatus

yeah :face_with_diagonal_mouth: (20 characters)