public Faker(Random random) {
this(Locale.ENGLISH, random);
}
public Faker(Locale locale, Random random) {
this.randomService = new RandomService(random);
this.fakeValuesService = new FakeValuesService(locale, randomService);
this.lorem = new Lorem(fakeValuesService, randomService);
this.name = new Name(fakeValuesService);
this.internet = new Internet(name, fakeValuesService);
this.phoneNumber = new PhoneNumber(fakeValuesService);