Please I will like to convert :
const words = {told: 64,
mistake: 11,
thought: 16,
bad: 17}
TO
const words = [
{text: 'told', value: 64,},
{text: 'mistake', value: 11,},
{text: 'thought', value: 16,},
{text: 'bad', value: 17,
},
]
Thanks a lot