diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/make-a-person.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/make-a-person.english.md index 717e35612d..5d147506fa 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/make-a-person.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/make-a-person.english.md @@ -70,6 +70,7 @@ tests: ```js var Person = function(firstAndLast) { + // Only change code below this line // Complete the method below and implement the others similarly this.getFullName = function() { return ""; @@ -83,6 +84,17 @@ bob.getFullName(); +### After Test + +
+ +```js +if(bob){ + bob = new Person("Bob Ross"); +} +``` + +