' https://stackoverflow.com/questions/59390073/how-to-access-an-array-directly-that-is-returned-from-a-function-in-vbscript Set foo = CreateObject("AlaxInfo.JsObjectDispatch.Foo") 'Dim a 'a = foo.barB 'MsgBox a(0) Function TrueArray(ByVal Value) TrueArray = Value End Function 'MsgBox TrueArray(foo.barB)(0) MsgBox foo.barB(0)