Hi everyone,
I've tried to add some words to the blacklist. I have an array containing bad words called BAD_WORDS. When I try to add it to the filter
const filter = new Filter(); filter.addWords(BAD_WORDS)
I receive an error

The only way to make it works is to map an array and add words one by one

Am I doing something wrong?