#!/usr/bin/perluse strict;use warnings;my @array = qw( A B C D E );my $arrayReference = \@array;print( "@$arrayReference\n" );