What does this program print?

from Internationalization
Node 24 intermediate 2 min

What does this program print?

JavaScript
const rules = new Intl.PluralRules("fr");
console.log(rules.select(0));
Open in playground
Report an error