(Choose 1 answer)
What would the browser display if the following script is executed?
<SCRIPT LANGUAGE="JavaScript">
var count = 0;
total = 0;
while (count <= 5) {
total = total + 10;
count = count + 1;
}
document.write(total);
</SCRIPT>
A. Nothing, the browser would generate an error.
B. 0
C. 50
D. 60