Hi Chris,
Please follow these steps to understand how do it:
1 Open your service mapping.
2 Delete all links from this mapping.
3 Add in mapping following LSVs "firstName", "lastName". http://prntscr.com/3u8dxz/direct
4 Make following links: "firstName"(response)-"firstName"(lsv), "secondName"(response)-"secondName"(lsv). http://prntscr.com/3u8ekb/direct
5 Make mapping from some response field to your text component. http://prntscr.com/3u8fg6/direct
6 Click "AddJS" on the text component link. And fill it with following code: http://prntscr.com/3u8h78/direct
pre
var firstName = localStorage.getItem("firstName");
var lastName = localStorage.getItem("lastName");
var goalText = firstName + "" + lastName;
return goalText;
/pre
That's all.
Please follow this solution step-by-step. And don't confuse steps by order.
Regards.