Iteratively referencing children of a VariantDictionary object

This might be a really dumb question, but here we go:

I’m trying to address the children of a variantDictionary object iteratively via a loop.

image

The idea is…

VBScript
Set ParentObject = <<VariantDictionaryPath>>
For i = 0 To 7
   Child = Concat(Probe, i)  
   myArray(i) = ParentObject.Child
Next

I cannot get the code to recognize “Child” in the above code as a variable referencing the correct key instead of literally interpreting it as “Child”.

I think this comes down to a fundamental issue with self-teaching VBScript, but regardless I’m hitting a wall as I don’t know what to google for relevant help.

Also I can’t seem to find any functionality similar to Object.CountChildren or similar. Is there even such functionality in the world of Biomek VBScripting?