```sh
handle = map
```
Creates an empty map and returns a handle to that array.<br>
This handle can be passed to other commands which support maps using handles.<br>
Once the map is no longer used, it should be released using the **release** command.
None
A handle to the map.
```sh
handle = map
release ${handle}
```