40. Consider the below code snippets, What will be the output?
function normarFunction() {
return 'Here is pizza!';
}
const arrowFunction = () =>"Here's chocolate... now go hit the gym already.";
console.log(normarFunction.prototype);
console.log(arrowFunction.prototype);