Why this line break?!

myTextField.htmlText = "First line! ";
myTextField.htmlText += "Still first line?!";

Why does this output:

First line!
Still first line?!

Instead of:

First line! Still first line?!

And how do I eliminate the line break?