Error 46. Missing comma

Problem occurs when there is a missing comma in the function declaration formal parameter list

function MyFun( x y ) // missing comma in the formal parameter list
{
   
return x * y;
}