You might want to explain what you want the script to do. The following will add the value of the field "Name 1" to the word "Hello", with a space between:
// Custom calculation script for a text field
event.value = "Hello " + getField("Name 1").valueAsString;