public insert(position as UInt, value as Object) as StringBuilder throws IndexException:
Inserts the string representation of an object.
This builder.
builder = StringBuilder()
builder.append("[]")
builder.insert(1u, 42 as Object)
print(builder.toString())