x
 
<!DOCTYPE html>
<html>
<body>
<script type="text/vbscript">
a=Split("Brown cow, White horse, Yellow chicken",",")
for each x in a
  document.write(x & "<br>")
next
</script>
</body>
</html>