diff --git a/seed/challenges/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting.json b/seed/challenges/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting.json index 417fb8d91c3..351b7c9a0ff 100644 --- a/seed/challenges/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting.json +++ b/seed/challenges/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting.json @@ -1276,11 +1276,11 @@ ], "challengeSeed": [ "var Person = function(firstAndLast) {", - " // Complete the method below and implement the others similarly", - " this.getFullName = function() {", - " return \"\";", - " };", - " return firstAndLast;", + " // Complete the method below and implement the others similarly", + " this.getFullName = function() {", + " return \"\";", + " };", + " return firstAndLast;", "};", "", "var bob = new Person('Bob Ross');",