ok how do I append a value to one element of the array?
CODE
my @aTest = (
[ 'albert', 'daniel', 'nathan' ],
[ 'danielle', 'mylee', 'rob' ],
);
#I want to add 'paul' ot @aTest[0]
foreach $row (@aTest){
foreach $col(@$row){
print "$col \n";
}
print "----- $row[1] \n";
}...