I am trying to simplify the action listener for 9 buttons on a screen. Currently, I have individual event handlers set up for each button, which seems inefficient. Is there a way to create an array of buttons and manipulate them collectively? For example, can I change the title of button[0] by simply referencing it as array[0].title = 'clicked'?