I've created two arrays:
I need to get string values from "Data2" to "Data4".
For first array it will be like:
Code:
-- first array (indexed by numbers 1...4) array_numeric = {"Data1", "Data2", "Data3", "Data4"}; -- second array (indexed by labels Item1...Item4) array_associative = {Item1 = "Data1", Item2 = "Data2", Item3 = "Data3", Item4 = "Data4"};
For first array it will be like:
Code:
array_new = {}; for c = 2, Table.Count(array_numeric) do
Comment