I think the table methods only work on arrays
Arrays and dictionaries are different because dictionaries have strings as keys and arrays have positive integers as keys
--array
local arrayExample = {
"abc",
123,
"test",
}
--dictionary
local dictionaryExample = {
thisIsATest = "abc",
example = 432424,
}
You can get the value using the key in dictionaries like this: