divider

Objective

In this sprint, you'll create a simple console program that displays a piece of ASCII-style art. This challenge focuses on practicing basic output formatting using text characters.

Skills to Practice

  • icon Creating and running a program
  • icon Displaying console output
divider

Tasks

  • icon Create a new project named sprint-1-2. Don't forget the file extension (e.g. .js, .java. .py).
  • icon Complete the following tasks:
    • icon Write a function that displays a word or message as simple letter art. Use the sample below to guide your formatting.
divider

Sample Output

Sample Output
XXXX XX XX XXXXXX XXXX
XX XX XX XX XX XX XX
XX XX XXXXXX XX XX XX
XX XX XX XX XX XX XX
XXXX XX XX XXXXXX XXXX

Begin Sprint