How to show hard-coded text in sequence diagram

Can anyone advise a newbie how to present the following Java code in a sequence diagram:

String text = “Hello World”;
writer.putContent(text);

The second line is easy. But how do I show where “text” comes from?
.