Can you spot the new line?

Code:
else if(split[p]=="=")
{
	nbtStats += "\t" + split[p+1].TrimEnd(new Char[] {' ','\n'});
	nbtStats += this.WhoOwnsThisMAC(split[p+1].TrimEnd(new Char[] {' ','\n'}));
}

This is the output
144.250.247.42 DL130JZ11 00-08-74-2B-13-94
Dell Computer Corp.
It seems to add a new line feed after the MAC is printed...If I just print out "test" after the mac it also jumps to the next line (so it's not a word wrap or that line itself, it must be the MAC line).

Any suggestions?