diff --git a/curriculum/challenges/english/25-front-end-development/workshop-library-manager/681dbe48ee5df6842385d735.md b/curriculum/challenges/english/25-front-end-development/workshop-library-manager/681dbe48ee5df6842385d735.md index 09f8ad15aed..339aad2b1c6 100644 --- a/curriculum/challenges/english/25-front-end-development/workshop-library-manager/681dbe48ee5df6842385d735.md +++ b/curriculum/challenges/english/25-front-end-development/workshop-library-manager/681dbe48ee5df6842385d735.md @@ -11,7 +11,7 @@ The rest of the objects representing the books have been filled in for you. Now would be a good time to start working on displaying the book information in the console. Over the next few steps, you will learn how to work with the `map()` method to achieve this goal. -Begin by logging the message `"Books in the Library:\n"` to the console. The newline character is added here because there should be a space between this message and the list of books. +Begin by logging the message `"Books in the Library:\n"` to the console. The newline character is added here to create a line break between this message and the list of books. # --hints-- diff --git a/curriculum/challenges/english/25-front-end-development/workshop-library-manager/682264d807fe00058c1ea013.md b/curriculum/challenges/english/25-front-end-development/workshop-library-manager/682264d807fe00058c1ea013.md index 1a8452978be..8f9bb95a3fc 100644 --- a/curriculum/challenges/english/25-front-end-development/workshop-library-manager/682264d807fe00058c1ea013.md +++ b/curriculum/challenges/english/25-front-end-development/workshop-library-manager/682264d807fe00058c1ea013.md @@ -9,7 +9,7 @@ dashedName: step-10 For the next part of the workshop, you will focus on displaying a list of book summaries to the console. -Begin by logging the message `"\nList of book summaries:\n"` to the console. The newline character is added here because there should be a space before and after the message here. +Begin by logging the message `"\nList of book summaries:\n"` to the console. # --hints--