/**
  *  Return a builder that picks a type at random from the supplied list
  *
  *  @access public
  *  @return \Faker\Components\Engine\Entity\Builder\SelectorRandomBuilder
  */
 public function selectorRandom()
 {
     $node = new SelectorRandomBuilder('SelectorRandom', $this->eventDispatcher, $this->repo, $this->utilities, $this->generator, $this->locale, $this->database, $this->templateLoader);
     $node->setParent($this);
     return $node;
 }