Games are under development. Expect frequent updates and changes.
Back to all games
15 points on winMedium

Bug Hunter

Inspect a short code sample, identify the faulty line, and deploy the correct patch.

Bug Hunter
20 Points
Sector Debug
Identify the async/await mistake.
1
async function fetchData() {
2
  const response = fetch("https://api.example.com");
3
  const data = await response.json();
4
  console.log(data);
5
}