use strict; my @array = (1..9); print scalar(@array[2,3]), "\n"; my @box = @array[2,3]; print scalar(@box), "\n";