Hi guys!

Im starting off with a super simple program that prints only words on the screen. I want to print 2 words and seperate each word in another line. The command for c is "\n" and im not sure what is the command for assembly. What is the command for printing a new line? I'll paste part of my code here...

Code:
                mov ah,09h
		mov dx,offset hello_message
		int 21h

		mov ah,09h
		mov dx,offset hello_message2
		int 21h
Thanks!