Table = {
"print('Hello')",
"print('Im in a table')",
"for i=1,10 do print('Tables are cool') end"
}
i need a way to execute the code in the table, for example:
example(Table[3]) -- could print `Tables Are Cool` ten times
how would i go about doing this?











