A module that returns a string created with random letters and numbers, of a size according to the number entered as a parameter.
npm install random-strings-numbers
let random = require('random-strings-numbers');
let getCharacters = random.RandomChar(5);
import { RandomChar } from 'random-strings-numbers';
let getCharacters = RandomChar(5);