What would be the output of the following example?
var Helloword=(props)=>
{
return(
<div>
Hello World 1
</div>
<div>
Hello World 2
</div>
);
}
ReactDOM.render(<Helloworld/>,mountNode)
a) Hello World 1
b) Hello World 2
c) Hello World 1 Hello World 2
d) Error