a1 = 2 b = {1,2} print("a"..tostring(b[1])) //Output a1 print(_G[("a"..tostring(b[1]))]) //Output nil
How can "a"..tostring(b[1]) Output 2?