How can I replace accessing the temp variable values from the following code extract? I have tried to get all values through the default JS code, however, I would like to use destructuring here
const temp = context.options[0]; // <----- here
const avoidPattern = [
'foo', 'bar', 'abc', 'value', 'temp', 'num'
];
return [...avoidPattern, ...temp]