Hey,
I'm trying to work on a project that asks a question and tyhen give three possible answers.
The problem is that I want the answers to be in random places.. So like the answer could be in in the second place 1 time and at the top again.
I've tried this:
possibleAnswers[0] = Convert.ToInt32(s.getArea());
possibleAnswers[1] = 110;
possibleAnswers[2] = 20;
possible1.Text = Convert.ToString(possibleAnswers[RandNum.Next(0, 3)]);
possible2.Text = Convert.ToString(possibleAnswers[RandNum.Next(0, 3)]);
possible3.Text = Convert.ToString(possibleAnswers[RandNum.Next(0, 3)]);
But it doesn't work, help me? :(