I have the following piece of code:
String[] arr = [
"Cat",
"Dog",
"Horse"
]
String payload = """
{
"Data" : ${arr}
}
"""
My end goal is to obtain a payload as:
{"Data":["Cat", "Dog", "Horse"]}
But the result I get is:
{"Data":[Cat, Dog, Horse]}
How can I fix this?