, creates a List object. Note that this operator, as a few mentioned above, can be chained to accept more than two operands.
my $what = (1, 2, 3); say $what.WHAT; # (List)
The comma is also used as a separator of parameters passed to the subroutine.
To create an empty list, use a pair of parentheses ().