I want to declare an array like this:
panel = ['A0', 'A1', 'A2', 'A3', 'A4', 'A5'];
so that panel(1) = A0.
The problem is that it takes the complete thing as one element, like this: A0A1A2A3A4A5
with panel(1) = A, panel(2) = 0, and so on.
How can such an array be created?