my @got = ExactlyWhatThisReturns( $exactly, $what, $it, $is, $based, $on, )->@*; #### my @got = @{ ExactlyWhatThisReturns( $exactly, $what, $it, $is, $based, $on ) }; #### my( $state, $zip ) = $user->GetAccount()->GetPriorOrder() ->GetShippingAddress()->@{ 'state', 'zip' }; #### my( $state, $zip ) = @{ $user->GetAccount()->GetPriorOrder()->GetShippingAddress() }{ 'state', 'zip' };