I’m a little unclear on how some of these things work.
Back on Step 110 it asks: “set fighting equal to 0 - the index of slime in the monsters array.”
My question is, why do you need to do variable = 0 instead of variable = array[0]? I thought you would need to specify which array to get the element out of. Having trouble understanding the rules/logic on that bit.
Then on Step 117, it has you use array[variable].property, and I don’t understand why the variable name goes in the square brackets.