diff --git a/week2/practice-exercises/1-joke-api/README.md b/week2/practice-exercises/1-joke-api/README.md index 96a54f3b8..bd964552c 100644 --- a/week2/practice-exercises/1-joke-api/README.md +++ b/week2/practice-exercises/1-joke-api/README.md @@ -2,7 +2,7 @@ Did you know that there is an API for Chuck Norris jokes? That's incredible, right!? -Write a small JavaScript function that calls this API [The Internet Chuck Norris Databases](http://www.icndb.com/api/) and returns a random joke. You'll be using the `node` command to execute the JavaScript file. To `GET` a random joke inside the function, use the API: https://api.chucknorris.io/jokes/random (see `node-fetch`). Make use of `async/await` and `try/catch`. +Write a small JavaScript function that calls this API [The Internet Chuck Norris Databases](https://api.chucknorris.io/) and returns a random joke. You'll be using the `node` command to execute the JavaScript file. To `GET` a random joke inside the function, use the API: https://api.chucknorris.io/jokes/random (see `node-fetch`). Make use of `async/await` and `try/catch`. Hints: