t = { ["text"] = "Hello world !" } print(t["text"]) > Hello world ! t[exemple] = "1234" print(t[exemple]) > 1234