- @abc = ("Hi", "there", "how", "are", "you?");
 print "@abc\n";
 
- ($abc) = ("Hi", "there", "how", "are", "you?");
 print "$abc\n";
 
- @abc = ("Hi", "there", "how", "are", "you?");
 print "$abc[2]\n";
 
- @abc = ("Hi", "there", "how", "are", "you?");
 print "$abc\n";