Hi, noggy spot
here is an extremely basic skeleton for one way of tackling this problem.
wordno = 2 rem // variable defining max number of words in program
dim word$(wordno) rem // Create an array to hold the written words
load sound "media\sound.wav",1 rem // load sounds into the program
dim word$(1) = "word" rem // set array variables to match the sound
load sound "media\sound2.wav",2
dim word$(2) = "word2"
rem etc until final word
answer$ = "Default"
do
rem // play a random sound
play sound rnd(wordno) + 1
rem // ask for answer
input "how do you spell the word?", answer$
rem // compare answer to correct word and use an if statement to determine whether the answer is correct or not.
if answer$ = word$
print "you are a clever clogs!"
else
print "yoo carnt spall veri wal !!!"
loop
i'm sure there are much better ways of going about creating this program, eg. reading the words from a file, and getting numbered waves from a folder.
I'm not so good with reading and writing to file at the moment.
maybe something to look into.
any way, more experienced programmers may be able to provide a better idea of what to do.
I hope this has been helpful
kezzla
Sometimes I like to use words out of contents