MsgBox ("Hello My name is Edmund" & vbLf & "Next line " & vbLf & "Next line")
For readability, you'd typically see it like this:
    MsgBox ("Hello My name is Edmund" & vbLf & _
            "Next line " & vbLf & _
            "Next line")