VBScript For looper with next

For looper with next

<html>
<body>

<script type="text/vbscript">
for i=1 to 6
 document.write("Text here!")
next
</script>

</body>
</html>