Runtime error, Remove list item. Attempt to remove item 9 of a list length 8

I have a list of 10 items but when I use any code that interacts with it an error pops up. The error reads :Runtime error. Remove list item. Attempt to remove item 9 of a list of length 8. The item numbers change each time the error pops up.
AC_2_2Charades.aia (207.6 KB)

indexes in lists do not remain the same when you delete an item.

If you have 10 items and delete item at index 2, then item 3 becomes index 2, item 4 becomes index 3. This is probably your issue.

You could also benefit from learning how to use lists, and perhaps the anyComponent blocks to rationalise your blocks.

Yes, as Tim said,