LUA DICT
local table = {
myFirstValue = "helloWorld",
mySecondValue = "hi"
}
assert(table.myFirstValue == "helloWorld")
assert(table["mySecondValue"] == "hi")
Charlito33