```jsx const arr = [ {id: 1, title: 'Accordion title 1', html: '

This is some html for Accordion 1

'}, {id: 2, title: 'Accordion title 2', html: '

This is some html for Accordion 2

'}, {id: 3, title: 'Accordion title 3', html: '

This is some html for Accordion 3

'} ] const arr2 = [ {id: 4, title: 'Accordion title 1', html: '

This is some html for Accordion 1

'}, {id: 5, title: 'Accordion title 2', html: '

This is some html for Accordion 2

'}, {id: 6, title: 'Accordion title 3', html: '

This is some html for Accordion 3

'} ]
```