(Choose 1 answer)
Find the bug in this code:
function car({make, model}) { return <h1>{make} {model}</h1>;};
A. Wrap the return in a fragment
B. The first letter of the function must be capitalized
C. Add parenthesis around the return value
D. Remove the return statement