SimpleRandomStringGenerator
class SimpleRandomStringGenerator(length: Int = 10, charPool: List<Char> = (('1'..'9') + ('A'..'Z') + ('a'..'z')).toList()) : ValueGenerator<String>
Generate random string from specified char pool with specified length