buttons = [
{one: 'asd', two: 'some'},
{one: 'asd', two: 'some'},
{one: 'asd', two: 'some'}
]
buttons.map(({one, two}) => {
return (`${one} ${two}`)
})
buttons.map((item) => {
let one = item.one;
let two = item.two;
return (`${one} ${two}`)
})