Hi,I have a result from a SQL query that comes as an array of objects, like this:[ { NAME: "BON", NUMBER: 21 }, { NAME: "JON", NUMBER: 51 }]I want to convert this into a CSV file so I can send it as an email attachment. What’s the best way to do thi...