Formatting Text Aggregator form Iterator

I have a scenario that receives a response from a WhatsApp Flow, parses the JSON message received, and sends a confirmation to the client.
However, I am unable to aggregate the output from my iterator correctly. I would like to skip empty values to avoid having empty lines.

Both the solutions do not work

e.g.
text aggregator input:
[
{
“value”: “• Con ritiro Giovedì 16 Gennaio:”
},
{
“value”: “N° Pacchetti Trita Hamburger: 5”
},
{
“value”: “N° Pacchetti Trita Sceltissima: 1”
},
{
“value”: “• Con ritiro Giovedì 23 Gennaio:”
},
{
“value”: “Pacco da 10 kg - Porzioni per 4”
},
{},
{
“value”: “• Note:”
},
{
“value”: “Magra”
},
{
“value”: “Solo filetto”
}
]

actual output:
[
{
“text”: “• Con ritiro Giovedì 16 Gennaio:\nN° Pacchetti Trita Hamburger: 5\nN° Pacchetti Trita Sceltissima: 1\n• Con ritiro Giovedì 23 Gennaio:\nPacco da 10 kg - Porzioni per 4\n\n• Note:\nMagra\nSolo filetto”
}
]
desired:
[
{
“text”: “• Con ritiro Giovedì 16 Gennaio:\nN° Pacchetti Trita Hamburger: 5\nN° Pacchetti Trita Sceltissima: 1\n• Con ritiro Giovedì 23 Gennaio:\nPacco da 10 kg - Porzioni per 4\n• Note:\nMagra\nSolo filetto”
}
]

SUPER!!! THANKS!!!
It worked perfectly!