concatenating carriage returns in calculation fields

I want to create a calcualtion field in a table that concatenates address label fields for a record. Can someone please tell me how to insert carriage returns into the calculation expression?

return “first line” + “\n” + “second line” + “\n” + “etc”;

return ( nameaddress1 + “\n” + nameaddress2 + “\n” + namecity + ", “+ namestate +” " + namezip )

This is a paste of my field calculation. Why does this not work when displayed on a form?

:oops: Never mind! I had the field defined as a field, rather than an area. Sorry!