So I'm trying to make a table with numbers in them, but also make the exact same thing but only that its a string with the numbers so doing print(table[i]) doesn't solve the problem.
local problems = {
1 + 1,
2 + 2,
}
local stringProblems = {
"1+ 1",
"2 + 2",
}
How would I go about doing this?