I tried
const randomName = (Math.random() + 1).toString(36).substring(2);
export const NEW_PERSONALIZATION_NAME = randomName;
If the test is passed, everything is fine. If the test fails, the constant is generated again. Look at my screen How can I solve this problem?