how to print an object containing multiple arrays inside a same element in react? [duplicate]

so here is an object

{
  can: ["a", "b", "c", "d"],
  votes: [12, 21, 30, 25]
}

and I want the result to be like this
`<div>

<div>a</div> <div>12</div>

<div>b </div> 21</div>

`
and so on…

I tried different combinations of Object.keys() and Object.enttries() but none worked for me.