what i am doing wrong?
``` displayCartTotal, use the formatAsMoney function to set appState.billFormated to the formatted total bill. The already assigned appState.bill and appState.country should come be handy now! Set the text content of the data-bill SPAN to the formatted bill set in appState.billFormated Finally, call uiCanInteract to wrap up displayCartTotal. javascript code const displayCartTotal = ({results}) => { const [data] = results; const {itemsInCart, buyerCountry} = data; appState.items = itemsInCart; appState.country = buyerCountry; appState.bill = itemsInCart.reduce((total, {qty, Price}) => { return total + (price * qty)}); appState.billFormated = formatAsMoney(appState.bill, appState.country); document.querySelector('[data-bill]').textContent = appstate.billFormated; uiCanInteract(); }; ```