Hi,
I want to create a 3 round quiz. In each round one of 10 random sprites should be created. But no sprite should be created twice.
For this I have dealt with (1D)-Arrays for the first time. Until now I choose a random x-value from the Array and store it in a global variable. Then the corresponding sprite is created.
But I don't manage to delete specifically the selected x-value from the array.
So,
1. How can I randomly select from an array between the remaining values?
2. And how can I specifically delete the currently selected value?
Thanks for any help!
held