Render array from ACF

This is pretty easy probably but I cant figure it out;

I have an array coming from ACF and when I render it using Field acf_editor=name and it returns
[“content”,“content”].

I think I have to loop over it with Field loop, but how do I return the content (clean and with HTML tags)?

Thank you

Hi! Is your array being created via Editor fields nested in an ACF repeater?
In that case you’d access the nested fields this way:

<Loop acf_repeater=field_name>
  <Field acf_editor=name />
</Loop>

Here’s our documentation on ACF repeaters and other nested field types

Did this help? If not could you clarify how you’ve set your field group up?