i want to use Async/await in the following code.
function Api(){
fetch('https://api.github.com/users').then(res => res.json())
.then(data => box.innerHTML=data.map((values) =>`<p>Login:${values.login}</p>
<p>ID:${values.id}`).join(''))
}