I'm trying to use faker.js to generate some random words, but I want it to choose between a few choices.
faker.random.word()
I tried something like this
faker.random.word({constraints: ['','','']})
This didn't work, and I could be way off since this was just a straight up guess. I tried looking for documentation on it but couldn't find any. Any suggestions?
I have not seen anything like this in faker module but you can using
uniqueNamesGenerator
module, check the documentation