Help Put Enable For One Folder

Soo i have that folder with the name : map2 , and that folder is with enable off in editor!

But in script i like put that enable ON or true;

i try that way :

      var map = context.root.getChildren()[0].getChildren()[11]; 
      map.enable = true;

and i try that way too :

       var map= context.root.getChildren()[0].findByName('map2');
       map.enable = true;

What i am making wrong?
anyone can help me?

please anyone can closed that topic i found the soluction , and is pretty easy…

this.map = this.entity.findByName(‘map2’);
this.map.enabled = true;