I want to be able to do:
for (@array){
$output = <some...command>;
#### then be able to associate $array with $output values
and then be able to store $array and its $values into an array
$a->$array=$output; <..something like this..>
and then be able to print each element of $array and its associated $output
}