I am trying to create a quiz.
I have created arrays to hold the questions and answers
I have generated the first random number (randomQ) and stored it along with the first generated question and answer. I want to generate the rest of the random numbers. I know the code is flawed, can someone put me right? At the moment the questions are limited to seven, hence the random number limitation.
while(q < questionTest.length-2) // I have already generated one number
{
while (randValue.length < questionTest.length)
{ q++; trace("q = " +q);
//generate and test new random number
randomQ2 = Math.floor((Math.random()*7) + 0);
for (var r:int=0; r<randValue.length;r++)
{
if (randomQ2 == randValue[r])
{ randomQ2 = Math.floor((Math.random()*7) + 0);}
if (randomQ2 == randValue[r+1])
{ randomQ2 = Math.floor((Math.random()*7) + 0);}
if (!(randomQ2 == randValue[r]))
{ randomQ = randomQ2; }
}
randValue.push(randomQ);
}
}
The final output this time was => randValue = 3,1,5,4,5,0,6
I get one duplication and one missing number, in this case “2” is missing and “5” repeats.