When you try to concat null through + operator, it is effectively replaced by a String containing "null".
A nice thing about this is, that this way you can avoid the NullPointerException, that you would otherwise get, if you explicitly called .toString() method on a null variable.