Extract the joke from the Chuck Norris web service response

The response received from the Chuck Norris web service contains multiple fields we are not interested in:

{
  "categories": [],
  "created_at": "2020-01-05 13:42:24.40636",
  "icon_url": "https://assets.chucknorris.host/img/avatar/chuck-norris.png",
  "id": "wQH-6UtLTqOWs-15TyKjaw",
  "updated_at": "2020-01-05 13:42:24.40636",
  "url": "https://api.chucknorris.io/jokes/wQH-6UtLTqOWs-15TyKjaw",
  "value": "\"With great power comes a great beard!\" - Chuck Norris."
}     
     

Modify the code written during Activity 2 to extract the text associated with the "value" key.