Write code which randomly chooses a number from 1 to 10. It should then display low if the number is 5 or less, otherwise it should display high.
What will be an ideal response?
One possible answer:
```
if Math.round(Math.random()) > 0.5;{
document.write(“low”);
}
else {
document.write(“high”);
```
Computer Science & Information Technology