import { sample } from '@mary/array-fns'; const words = [ 'abroad', 'acorn', 'anaconda', 'anchovy', 'aorta', 'argue', 'ashy', 'astound', 'attest', 'babied', 'bobcat', 'bondless', 'bullion', 'bunny', 'celtic', 'chivalry', 'circling', 'civic', 'clobber', 'conform', 'cosmic', 'crier', 'curtly', 'depose', 'diagnosis', 'disfigure', 'drank', 'ducktail', 'eel', 'effort', 'equipment', 'eternal', 'exemplify', 'filtrate', 'fit', 'flaccid', 'fool', 'germinate', 'glade', 'graveness', 'gray', 'hydrant', 'italicize', 'landowner', 'lavender', 'mandatory', 'molecule', 'multitude', 'music', 'national', 'neatly', 'omnivore', 'other', 'overdrive', 'overhang', 'overlying', 'padded', 'pang', 'paralyses', 'partner', 'pedometer', 'plaything', 'pointy', 'prescribe', 'pueblo', 'pursuant', 'reprise', 'resilient', 'reusable', 'roster', 'scenic', 'selected', 'singer', 'slacker', 'smirk', 'smoked', 'smugly', 'startle', 'sternum', 'strut', 'subsystem', 'supper', 'swifter', 'tacking', 'traffic', 'tragedy', 'trapper', 'tummy', 'twiddle', 'unglazed', 'ungloved', 'unicorn', 'unissued', 'unmovable', 'unwary', 'uselessly', 'venus', 'vertebrae', 'wildly', 'wrecker', ]; export const generateConfirmationCode = () => { return sample(words, 3).join(' '); };