result.map((item, index) => {
if(item.detailArticle === result[index++].detailArticle){
return {
id: item.makerId,
detailBrand: item.maker,
detailArticle: item.number,
detailName: item.description,
offers: result.map((itm) => {
if(item.makerId === itm.makerId) {
return itm.description
}
})
}
}
}))