Word package provides functionality to generate a fake semi-pronounceable random (nonsense) word value.
npm install @fakerjs/word
Word package provides functionality to generate a fake semi-pronounceable random (nonsense) word value.
```
$ npm install --save @fakerjs/word
`js
import word from '@fakerjs/word';
word();
//=> rad
word({length: 3});
//=> rad
`
Run tests
```
npm run test