<!DOCTYPE html>
<html>
<body>

<%

a=Split("W3Schools is my favourite website")
for each x in a
   response.write(x & "<br>")
next

%>
 

</body>
</html>