The add function adds its 2 arguments and returns the result:
function add( x, y ) { return x + y; }
What is the result of calling add by passing a number as its only argument?
console.log( add( 3 ) );