my @arr = (1,2,3,4); print "This is array: @niz\n"; my $ref = \@niz; print "This is the reference: $ref\n"; print "And this should be dereferencing or getting the value of the array through the reference : @{$ref}\n"; # This is same as (print "This is array: @niz\n";)