in my code I have several events like this
+ for (something)
+ letterTile | touched
+ letterTile | another condition
I understand that I can get how many of letterTile instances picked at the another condition event using letterTile.pickedCount, but how do I get the second instance of the picked letterTile object?
I tried for looping using letterTile.pickedCount as the end index but that doesn't work like I want it to.