Can someone help me with returning a multidimensional array from a function? I seem to be having trouble getting it right as I want to include both key and value pairs in the array.
function Multidimensional(){
return [
"one": [
"two":[],
"three":[
"testing.png":{source:"http..."}
],
"another.png": {source:"http..."}
];
}