my $test = [ "Hello", "PM" ]; #print $test, you will get array ref @array_deref = @{$test}; #dereferencing the array ref print"@array_deref\n";