In Kithgard 16/43, the text reads:
‘Benutze findNearestEnemy(), um auf den nächsten Gegner zu zielen.
var nächsterGegner = held.findeNächstenGegner();’
That might not only confuse somebody who doesn’t know that ‘findNearestEnemy()’ translates to ‘findeNächstenGegner()’, but if you try to actually use ‘held.findeNächstenGegner()’, the object ‘held’ is undefined (as could be expected).
It would appear more intuitive to use ‘var nextEnemy = hero.findNearestEnemy();’ in the translation, or am I off there?