Classic ASP Object

asp-classicobject

It is possible to create an "empty" Object and create Object properties on the fly in Classic ASP?

Take this JavaScript example:

var sample = new Object();
sample.prop = "Object property";
sample.prop2 = "Another property";

What is the Classic ASP equivalent? Do I have to write a class with getters and setters?