patch code
public function __construct(
\Magento\Backend\App\Action\Context $context,
\Magento\Framework\Math\Random $mathRandom
) {
parent::__construct($context);
$this->_mathRandom = $mathRandom;
}
public function generateRandomString($length)
{
return $this->_mathRandom->getRandomString(
$length,
\Magento\Framework\Math\Random::CHARS_DIGITS . \Magento\Framework\Math\Random::CHARS_LOWERS
);
}
Thanks.