I have not seen anything like this in faker module but you can using uniqueNamesGenerator
module, check the documentation
const { uniqueNamesGenerator } = require('unique-names-generator'); ;
const colors = [
'Green', 'Red', 'Yellow', 'Black'
]
const characterName = uniqueNamesGenerator({
dictionaries: [colors],
length: 1
});
console.log(characterName)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…