Array assignments 

my @colours = ('red', 'green', 'blue');

my @hues = @colours;

my @primaries = map ucfirst, @hues;