export function npcCheck(name) {
const lines = [
"Responds to emails with 'As discussed offline'",
"Always says 'let's circle back'",
"Wears a lanyard to Zoom calls"
];
return {
status: true,
line: lines[Math.floor(Math.random() * lines.length)]
};
}