Write the line of code to complete the self-invoking function. This function has to log the result of addition in the console.
const adder = (function() {
function add(a, b) {
// missed code
}
return {
add: add
};
})();
adder.add(2, 3); // Console Output: 5