Since this is a learning project i dont know how much of a "spoiler" answer you want.
However, your problem is in your data structure. You have one Answers list for all your questions. This wont work. You need a set of answers for every question.
So why do you get these results. You used
Answers.Clear();
and cleared the list => you lost the answers for 1st question.
↧