What’s the coding course that’s asking people to make question and answer games if you don’t mind me asking? It’s a common enough beginner question that there has to be some large-scale teaching institution that’s decided that having students create a question and answer game in Unity is a great idea.
Looks like you want a custom class containing your data, something like:
public class Question {
public string questionText;
public string feedback;
public string[] answers;
}
And then you can just have an array of those things:
Thank you for you quick response! It is working now!
For our school project we have to make a game for primary school students where they learn about safety on social media. Our game is based on flappy bird where they have to choose between two gaps of pipes to fly through and choose an answer.