For loop in arry of multi lines of single line text

I have a MetaObject, which is connected to a MetaField. Inside it there is a multi lines of single line text.
so it’s an array.. I want to run in a loop and display it.

{{ product.metafields.custom.product_features.value.product_feature }} ===>> shows me this: [“x”,“r”,“z”,“y”]. (It works!)

But I want to show them one by one…

I tried the following code:

{% for feature in product.metafields.custom.product_features.value.product_feature %}

{{ feature }}
{% endfor %}

But it doesn’t work, pls help me :slightly_smiling_face:

{% for feature in product.metafields.custom.product_features.value.product_feature.value %}

{{ feature }}
{% endfor %}

Try This code

thank you for the quick reply! you helped me alot.
Bless you!