Help with module script

Hello, I am making a trivia/guessing type of game and I want to know if it is possible to assign 2 answers to 1 question in a module script. For example,
image

My handwriting is terrible, I know. By the way here is the luau formatted version of the code incase you want to make some changes to it to show me:

local module = {
	["Name an US President"] = "barack obama",
	["Name an Animal"] = "dog",
	
}

return module
local module = {
	["Name an Animal"] = {"dog","cat","bird"}
	
}

return module
1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.