Hello I have built a japanese quiz game its really awesome and i only built it within an hour. its like a guessing game but it repeats the same questions in the same order and i cant figure out how to randomize that. check out my code and fix it to randomize please?
load image "C:/K-A.JPG",1
load image "C:/K-I.JPG",2
load image "C:/K-U.JPG",3
load image "C:/K-E.JPG",4
load image "C:/K-O.JPG",5
load image "C:/K-KA.JPG",6
load image "C:/K-KI.JPG",7
load image "C:/K-KU.JPG",8
load image "C:/K-KE.JPG",9
load image "C:/K-KO.JPG",10
do
paste image 1,X,Y
input " ", guess$
gh$ = "a" : if guess$ = "a" : print "correct" : sleep 1000 : else : print "wrong" : sleep 1000 : end : endif
paste image 2,X,Y
input " ", guess$
gh$ = "i" : if guess$ = "i" : print "correct" : sleep 1000 : else : print "wrong" : sleep 1000 : end : endif
paste image 3,X,Y
input " ", guess$
gh$ = "u" : if guess$ = "u" : print "correct" : sleep 1000 : else : print "wrong" : sleep 1000 : end : endif
paste image 4,X,Y
input " ", guess$
gh$ = "e" : if guess$ = "e" : print "correct" : sleep 1000 : else : print "wrong" : sleep 1000 : end : endif
paste image 5,X,Y
input " ", guess$
gh$ = "o" : if guess$ = "o" : print "correct" : sleep 1000 : else : print "wrong" : sleep 1000 : end : endif
paste image 6,X,Y
input " ", guess$
gh$ = "ka" : if guess$ = "ka" : print "correct" : sleep 1000 : else : print "wrong" : sleep 1000 : end : endif
paste image 7,X,Y
input " ", guess$
gh$ = "ki" : if guess$ = "ki" : print "correct" : sleep 1000 : else : print "wrong" : sleep 1000 : end : endif
paste image 8,X,Y
input " ", guess$
gh$ = "ku" : if guess$ = "ku" : print "correct" : sleep 1000 : else : print "wrong" : sleep 1000 : end : endif
paste image 9,X,Y
input " ", guess$
gh$ = "ke" : if guess$ = "ke" : print "correct" : sleep 1000 : else : print "wrong" : sleep 1000 : end : endif
paste image 10,X,Y
input " ", guess$
gh$ = "ko" : if guess$ = "ko" : print "correct" : sleep 1000 : else : print "wrong" : sleep 1000 : end : endif
loop
Vid