I have a database which contains 2 tables - tests and questions(for those tests).

Questions table has a column called right_answer which might be an array of strings or a single string.

So, I'm wondering what is the best approach to store data in this case? Should I have several questions tables for an each answer type or there's some other way?
Maybe I can store my right_answer using only one table somehow?