in Hudtxt2:
parse('hudtxt2 '..id..' 6 "questionbox['..math.random(1,15)..']" 120 420')
questionbox is name of table and that math.random is for random question from this table, I hope you understand what I wrote here

parse('hudtxt2 '..id..' 6 "questionbox['..math.random(1,15)..']" 120 420')
questionbox = { 	[1] = 'Question 1', 	[2] = 'Question 2', 	[3] = 'Question 3', 	[4] = 'Question 4', 	[5] = 'Question 5', 	[6] = 'Question 6', 	[7] = 'Question 7', 	[8] = 'Question 8', 	[9] = 'Question 9', 	[10] = 'Question 10', 	[11] = 'Question 11', 	[12] = 'Question 12', 	[13] = 'Question 13', 	[14] = 'Question 14', 	[15] = 'Question 15' } parse('hudtxt2 '..id..' 6 ""..questionbox[math.random(1, 15)].."" 120 420')
questionbox = {'Question 1', 'Question 2', etc etc}
questionbox = { 	{'s1','s2','s3','s4','s5','s6','s7','s8','s9','s10','s11','s12','s13','s14','s15'} }
questionbox = {'Question 1', 'Question 2', etc etc}
questionbox = {'Question 1', 'Question 2'} print(questionbox[1]) -> Question 1 print(questionbox[2]) -> Question 2
parse('hudtxt2 '..id..' 6 '..questionbox[math.random(1,15)]..' 120 420')
questionbox={"What's your favourite color?","What do you think about this stupid answers?","Have you got a dog?","How old are you?","Do you want to be DC for a one day?"} local q=questionbox[math.random(1,#questionbox)] parse('hudtxt2 '..id..' 6 "'..q..'" 120 420')