In MS Small Basic, arrays can be initialised with a string: ``` arr = "a=100;b=999;" TextWindow.WriteLine(arr["b"]) ' prints 999 ``` This doesn't seem to be possible with ISB - is there an alternative for that?