Initialize the sandbox by creating a new Modal Sandbox instance.
This method authenticates with Modal and provisions a new sandbox container.
After initialization, the id property will reflect the actual Modal sandbox ID.
initialize(): Promise<void>const sandbox = new ModalSandbox();
await sandbox.initialize();
console.log(`Sandbox ID: ${sandbox.id}`);