Can you please explain what is going on in this? I am lost on how references work in this:
use strict;
my @array = ('1','2','3','blue','red');
my $array_reference = \@array; # a reference to the array
&print_array($array_reference);
# print 'blue'
print "COLOR...