Anyone have any ideas why this gives an error in an webex connect evaluate node?
const originalArray = ["apple", "orange", "banana"];
const formattedArray = originalArray.map(fruit => ({ fruit }));
const myJson = JSON.stringify(formattedArray);
1;
...