I would like to be able to convert an array to strings i bicep
Let say i have an array:
param arraytest array = [
'numberOne'
'numberTwo'
]
I would like to be able to convert this array to strings, så when i put the arraytest in a new array, that only excepts strings, it will not complain
so like this:
destination: [
arraytest
'numberThree'
]