question 1 of 5\nplease answer the following question\nselect one\nif you have a function named \makepizza\…

question 1 of 5\nplease answer the following question\nselect one\nif you have a function named \makepizza\, how do you call it in your program?\nselect the one choice that best answers the prompt above:\nanswer 1\nmakepizza();\nanswer 2\nconsole.log(makepizza);\nanswer 3\nmakepizza\nanswer 4\nmakepizza()
Answer
Brief Explanations:
In programming, to call a function named "makePizza", you typically use the function name followed by parentheses. So "makePizza()" is the correct way to call it. The other options like using console.log in Answer 2 is for printing output and Answer 3 and 4 have incorrect syntax or are mis - formed.
Answer:
Answer 1. makePizza()