Explicitly referencing array properties marked as default
(e.g. MyObj.Items[0]) is unnecessarily verbose. It can also be unclear
that it is accessing the same collection as the implicit reference (MyObj[0]).
Use the array accessor directly on the object:
Baz := Bar.Items[0];
Baz := Bar[0];