Files

615 B

id, title, challengeType, dashedName
id title challengeType dashedName
660f17294346b7d69e79db3d Step 32 1 step-32

--description--

You are now ready to start building your pyramid generator. Your character variable will serve as the building block for the pyramid.

"Hello" might not work very well for that. Change the value of character to be the hash character "#".

--hints--

Your character variable should be a hash symbol.

assert.equal(character, "#");

--seed--

--seed-contents--

--fcc-editable-region--
const character = "Hello";
const count = 8;
const rows = [];
--fcc-editable-region--