I have a quiz game and i need to randomize the button texts, i need some kind of way get 4 numbers between 0 and 3 in randomized order.
LippuScript.Lista is a list from other script witch has 3 random answers and one correct answer.
The problem i am having is that the correct answer is always at the same spot.
randomilistasta = lippuScript.Lista[0];
randomilistasta2 = lippuScript.Lista[1];
randomilistasta3 = lippuScript.Lista[2];
randomilistastaVika = lippuScript.Lista[3];
Button1.text = randomilistasta;
Button2.text = randomilistasta2;
Button3.text = randomilistasta3;
Button4.text = randomilistastaVika;