Answer (Choose 1 answer)
How do you fix the syntax error that results from running this code?
const person = (firstName, lastName
{
A. Add a return statement before the first curly brace.
B. Wrap the object in parentheses.
C. Call the function from another file.
D. Replace the with an array
first: firstName,
last: lastName
}
console.log(person("jhon", "Wolson
E46