Hi there folks! I am making a simple adding game for my students. The basic idea is the students are given a question, and below the question is a label array with 6 elements from 0 to 5. The label array is called AnsChoiceLBL(0) to (5). The correct answer for the question is in another label caption called CorrectAnsLBL.caption.

What I would like to do is have it so one of those AnsChoiceLBL array elements is the correct answer, and the rest of the array elements have other numbers (incorrect answers). Since there are 6 elements total, I would like to have 3 elements to have the next 3 numbers after the correct answer, and 2 numbers below the correct answer.

So if for example, the CorrectAnsLBL.caption was 5, the AnsChoiceLBL array would have numbers like 3,4,5,6,7,8. The numbers could be all mixed up, but I think that would mean the program would have to randomize which element to store the correct answer.

Would anyone know how to do that? Thanks a ton!

Justin