When I embed the following script in my HTML, the output doesn't have any styling. How can I style the script output to blend well with the existing HTML structure? I tried accessing the output by ID, but couldn't figure it out.
<script>
var myArray = [
"<ul><p>Alef</p><p>1</p>",
"<ul><p>Bet</p><p>2</p>"
];
var randomItem = myArray[Math.floor(Math.random()*myArray.length)];
document.body.innerHTML += randomItem;
</script>