I'm trying to enhance my knowledge of faker after a system reset, and I'm curious about its latest features. Does the new version include a function similar to contextual cards or a way to generate fake usernames? Here's a snippet of my current code:
useEffect(() => {
const suggestions = [...Array(20)].map((_, i) =>({
...faker.helpers.contextualCard(),
id:i,
}));
console.log(suggestions);
}, []);
Any insights or information would be greatly appreciated. Thank you!