Say I have an array:
s = ["Abc", 123, "Abc", 123, "Abc", 123, "Abc", 123, "Abc", 123]
What would be the best way to turn it into
array = [["Abc",123]["Abc",123]["Abc",123]["Abc",123]["Abc",123]
Say I have an array:
s = ["Abc", 123, "Abc", 123, "Abc", 123, "Abc", 123, "Abc", 123]
What would be the best way to turn it into
array = [["Abc",123]["Abc",123]["Abc",123]["Abc",123]["Abc",123]