diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/profile-lookup.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/profile-lookup.md index 36cbecd62c..310597ad6f 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/profile-lookup.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/profile-lookup.md @@ -96,10 +96,10 @@ var contacts = [ ]; -function lookUpProfile(name, prop){ -// Only change code below this line +function lookUpProfile(name, prop) { + // Only change code below this line -// Only change code above this line + // Only change code above this line } lookUpProfile("Akira", "likes");