```js const listItems = [ { position: 1, isActive: false, isFixed: true, title: '

My header plop plop plop

', body: '

My text body My text body My text body My text body My text body My text body

' }, { position: 0, isActive: false, isFixed: false, title: '

My header plop

', body: '

My text body My text body My text body My text body My text body My text body

' }, { position: 2, isActive: false, isFixed: false, title: '

My header plop

', body: '

My text body My text body My text body My text body My text body My text body

' } ] const copyListItems = JSON.parse(JSON.stringify(listItems)) const styleHeader = { background: 'red' }

````