#!perl
@flin = qw( dummy_item fred betty barney dino wilma pebbles bamm-bamm );
print "Enter a number 1 to 7 and see what you get, then press CTRL-D, can you guess what the reference is:"
chomp(@num=<STDIN>);
foreach (@num){
	print"$flin";
}