I want to dynamically create arrays with variable names from another array. Say that I have:
Array1 = ['a', 'b', 'c']
I want to now programatically create a new array for each value in Array1 (where I do not know how many values will actually be in Array1 and I do not know the names that will be in there) using the names provided in Array1. So effectively it will give me:
a = []
b = []
c = []