<h1>FizzBuzz</h1>
<p>
Write a loop (in JavaScript) that counts from 1 to 100. If the number is a multiple of three, echo out the word "fizz". If the number is a multiple of five, echo out the word "buzz". If the number is a multiple of <strong>both</strong> three and five, echo out the word "fizzbuzz".
<br /><br />
Echo the resulting string in the #result div
</p>
<h1>Results</h1>
<div id="result"></div>