I am recovering an array from a CSV and getting values like this after i iterate through them with a while loop:
(a) Array ( [0] => VAL11
[1] => VAL12
[2] => VAL13
[3] => VAL14
[4] => VAL15 )
(b) Array ( [0] => VAL21
[1] => VAL22
[2] => VAL23
[3] => VAL24
[4] => VAL25 )
How would I go about extracting only Array (b) into its own new array?
The problem is that the identifiers of all the arrays are the same, based only on numeric keys
Thanks
Output: