That's a pain that my original post no longer exists 😞
To summarise the technique, suppose you have a collection that looks like this and you want to convert this to an HTML table.

Here's the code to generate a table of results.
Collect(outputTable,"<Table>");
ForAll(Countries,
Collect(outputTable, "<tr><td>" & name & "</td></tr>")
);
Collect(outputTable,"</Table>")
The result of this looks like this:

In an HTML control, you can then combine all of these rows into a single string with this:
Concat(outputTable, Value)
Hope that helps.