Items are added to a Collection by calling its .Add method:
Syntax:
.Add(item, [key], [before, after])
ParameterDescriptionitemThe item to store in the Collection. This can be essentially any value that a variable can be assigned to, including primitive types, arrays, objects, and Nothing.keyO...