'How to style data that is extracted from localstorage?

I am displaying data from localstorage but the problem is it doesn't have any formatting so everything is jumbled together. Is there something I can do to style it?

I am getting these values like this -

function getItem() {
    const item = localStorage.getItem('name');
    return document.getElementById('favsarray').innerHTML = JSON.stringify(item);
}
getItem()


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source