diff --git a/index.js b/index.js index cbe723627..f2c805dea 100644 --- a/index.js +++ b/index.js @@ -1,9 +1,9 @@ -var greeting = ""; +var greeting = "Hello, everybody!"; var specialGuest = "Neil deGrasse Tyson" -var greetSpecialGuest = "" + specialGuest + "!"; +var greetSpecialGuest = "Hello, " + specialGuest + "!"; var topic = "space"; -var conversation = `${topic}`; +var conversation = `Let's talk about ${topic}.`; \ No newline at end of file diff --git a/test/index-test.js b/test/index-test.js index de7bc3226..04c9988ce 100644 --- a/test/index-test.js +++ b/test/index-test.js @@ -10,4 +10,4 @@ it('concatenates strings to greet a special guest in `greetSpecialGuest`', funct it('interpolates a string in `conversation`', function() { expect(conversation).toEqual(`Let's talk about ${topic}.`) -}) +}) \ No newline at end of file