An example use case would be storing the last view pages. In the Profile Script, I can just add page.path into an array and then use that array in the Activity.Profile Script (user.testValue)var testValue = user.get('testValue') ||[];testValue.push(page.path);return testValue.slice(0, 10);in Activit...