Currently one has to write: ```python >>> arr['key1', 'key2'] ``` even though key1 and key2 can be "string keys". So I don't see any reason to disallow going one step further. See also #151 For example: ```python >>> arr = ndtest((3, 4)) >>> arr['a2;b1..b3'] b b1 b2 b3 9 10 11 >>> arr['b1;a2'] 9 ```