Function::fpct
The number of arguments passed to the Function expression is not the same as the number of parameters in the Function expression:
Function[{x, y, z}, x + y + z][3, 4]This shows a correct use of this Function expression:
Function[{x, y, z}, x + y + z][3, 4, 5]