const regex = /(?<areaCode>\d{3})-(?<number>\d{4})/;
const str = "Call 123-4567 now!";
const match = str.match(regex);
console.log(match.groups.areaCode); // خروجی: 123