hi,Not sure if this is exactly your issue, but the "new String" part will not work in your script. Remember that this is script, not pure Java. The best thing to do is just return quoted values like "user-a" instead of new String("user-a");If you want to create a new string with the new operator y...