http://www.perlmonks.org?node_id=223650

tachekent has asked for the wisdom of the Perl Monks concerning the following question:

If I have a lists of lists, how do I copy one of the sub-lists into a new list?

I tried @newlist = $LoL[$n], but that always seems to evaluate $LoL$n in scalar context.

confused...