Whenever you try to pass a collection of strings to a function, it just passes an empty table.
If you try to define the parameter as `Table("Text")`, it gives you an error:
```
cannot use non-record value in this context power apps custom function
```
I've tried defining the parameter `Table({Value: "text"})`, and then pass in the collection of strings:
```
functions.myFunction(["one", "two", "three"])
```
and this seems to work, but the values for the table are all empty. For instance, if the function is defined as
```
Concat(Params, Value, " and ")
```
the output would be:
```
and and and
```
It would be really useful to be able to pass in actual strings instead of having to rely on a pointless record. This would save a lot of time and produce much cleaner code and be a step towards more composable functions for arrays.
Thank you