You mean -> - its a dereference operator, used heavlily in OO perl for calling methods of objects. But basically, you passed a scalar reference o the array, so you dereference the scalar to get at the array it references.

Code:
use CGI;
my $cgi = new CGI;
print $cgi->param('formfield');