<script>
x = 6;

do {
    document.write( "The number is:"+x+" <br>");
    x++;
} while (x <= 5);
</script>
The number is: 6