Help for this page
my @array = (1, 2, 3); my $array_ref = \@array; # the \ takes the reference
my $array_ref = [1, 2, 3];