Help for this page
# First array # This array could contain any number of items my @firstArray = ( "item1", "item2", "item3" );
# Results array my @results = ( ... ); # Note: [ "item1", "item2" ] & [ "item2", "item1" ] # should be considered as the same.