Code:
my @data;
@data = (
["1st","2nd","3rd","4th","5th","6th","7th", "8th", "9th"],
[ 1, 2, 5, 6, 3, 1.5, 1, 3, 4],
[ 1, 2, 5, 6, 3, 1.5, 1, 3, 4 ]
);
Ran debugger and cannot extract any of the elements, just keep getting the pointers to the array.
How would you use the push to populate the values of @data?
Thanks in advance.