lets say i make a function with 3 arguments:

myfunction (X,Y,Z);

in my program i call that function but i only need the middle argument. So would I write this:

myfunction (,5,) ?? because that gives me errors

Thanks for any help