```
myHashmap = createHashmap;
myHashmap set ["test", []];
private _myArray = + (myHashmap get "test");
_myArray pushBack "test";
```
```
hint str myHashmap
``` IS
```
[["test", ["test"]]];
```
it should be
```
[["test", []]]
it should be [["test", []]]```
only if I do this, it would be right:
```
private _myArray = (myHashmap get "test");
```