right im making flash cards for an english test i have coming up and making them in vb so i can send them to others who need them and i'm trying to make it so the do loop checks for a word in a variable how do i do that? i've pretty much tried nothing as i don't know even where to start in this case.
loopey(5) = ((loopey(5)) + 1)
If loopey(5) <= 2 Then
answers(5) = InputBox(questions(5))
ElseIf loopey(5) >= 3 Then
answers(5) = InputBox(questions(5) & " (hint: you only need to say one of them)")
End If
Loop Until answers(5) = "corpse" ' i want it to contain this word but idk how :D```