I've spotted an issue while generating passwords with following code:
`var faker = new Faker();
var password = faker.internet().password(8, 100, true, true, true); //(minLength, max Length, includeUppercase, includeSpecial, includeDigit)`
The generated password does not always include a digit (about 1-2% results are incorrect).
Sample incorrect output:
- ^Ez!Wdi@
- *Wow$&pIkeK@*OF ("O" in this one is not a zero)
Faker Version: 1.0.2