Problem with bounce2 lib and array

Probably a stupid question but I'm trying to debounce 3 buttons as an array debouncer.attach(buttonPin[1]);
I can understand it won't work because you need a separate instance of bounce for each pin but how can I work my way around this problem of debouncing an array of inputs? Forgive my ignorance but I'm a bit clueless with programming!

Use an array of instances.

Hi,

Take a look here here.

Look at the example ArrayOfPins.

Jacques