The post indicates that the system cannot handle arrays of arrays, and instead converts the inner arrays to strings. A community member has added documentation about this issue, explaining that the system only supports certain valid value types. Another community member suggests using JSON.stringify to save complex content, such as objects, as text, and then using JSON.parse to dynamically parse the variable back into an object when needed.
If you really need to save a complex content into a variable, for example an object, you can use the JSON.stringify function to convert it into a text. And whenever you are using the variable, you can dynamically parse it back into an object using JSON.parse in an inline format: