Convert array to json

Hi! How to make a json of the following form from this array without iterator
image
[
{“email”: “user1@example.com”},
{“email”: “user2@example.com”},
{“email”: “user3@example.com”}
]

I use the JSON.stringify() function inside a Set Variable module whenever I need to convert an array to JSON in Make. Just make sure the array is properly structured—objects inside arrays convert cleanly. For more complex formatting, I sometimes pass it through a Code module with JavaScript. It’s a handy way to prep data for APIs or webhooks.