Array Perl

#!/usr/bin/perl -w
$element = "Ouch";
@array = ($element, 1, 2, 3, 4);
print "@array\n";