#!/usr/bin/perl -wuse strict;my @array = (2, 4, 6, 8, 10);my $array_r = \@array;print "This is our dereferenced array: @{$array_r}\n";