VBA textbox line break or new paragraph

TextBox1.MultiLine = True TextBox1 = "Introduction" _ & Chr(13) & " " _ & Chr(13) & "Second Line of Text" _ & Chr(13) & " Third Line of Text" 'Chr(13) is line break