diff --git a/challenges/json-apis-and-ajax.json b/challenges/json-apis-and-ajax.json
index c522e2441b0..1148756772b 100644
--- a/challenges/json-apis-and-ajax.json
+++ b/challenges/json-apis-and-ajax.json
@@ -5,11 +5,10 @@
{
"id": "bb000000000000000000001",
"title": "Trigger on click Events with jQuery",
- "difficulty": 3.19,
"description": [
"With jQuery we are able to get data from APIs via Ajax.",
- "This data normally comes in the form of JSON.",
- "Let's get the Get Message button to set the text of a div.",
+ "This data normally comes in the form of JSON.",
+ "Let's get the Get Message button to set the text of a div element.",
"We will later use this to display the result of out API request.",
"$(\"#getMessage\").on(\"click\", function(){",
" $(\".message\").html(\"Here is the message\");",
@@ -33,13 +32,11 @@
"