We use Array.fill for example this way:
const veryLongItems = Array.from({ length: 5 }, () => faker.lorem.sentences(3));
This ensures that the array elements are all different sentences. Right now the plugin is determining that that breaks the rule even though it is not a constant value.
For example this IS wrong:
const sentence = faker.lorem.sentences(3);
const veryLongItems = Array.from({ length: 5 }, () => sentence);
Since the sentence never changes, but when using a callback with a function call inside that could return a different value, that should not break the rule.