diff --git a/challenges/json-apis-and-ajax.json b/challenges/json-apis-and-ajax.json
index cec38c8b65..9ea8bfd0e8 100644
--- a/challenges/json-apis-and-ajax.json
+++ b/challenges/json-apis-and-ajax.json
@@ -396,13 +396,12 @@
"The navigator will get the users current longitude and latitude with a decent level of accuracy.",
"",
"if (navigator.geolocation) {",
- " navigator.geolocation.getCurrentPosition(function(position){",
- " // Do something in here with the coordinates!",
- " ",
- " console.log(\"latitiude\", position.coords.latitude);",
- " console.log(\"longitude\", position.coords.longitude);",
- " ",
- " });",
+ " navigator.geolocation.getCurrentPosition(function(position){",
+ " // Do something in here with the coordinates!",
+ " ",
+ " $(\"#data\").html(\"latitiude\" + position.coords.latitude + \"longitude\" + position.coords.longitude);",
+ " ",
+ " });",
"}",
"
"
],
@@ -410,11 +409,13 @@
"assert(editor.match(/navigator\\.geolocation\\.getCurrentPosition/gi), 'you should make use of the navigator.geolocation
to access the users current location')"
],
"challengeSeed": [
- "var json = {",
- " name: \"Happy Camper\"",
- " age: 35",
- " height: \"5ft 8\"",
- "}"
+ "fccss",
+ "",
+ "fcces",
+ "