--- id: 5d8a4cfbe6b6180ed9a1ca4b title: Step 108 challengeType: 0 dashedName: step-108 --- # --description-- Your percent values are numbers less than one. You will need to multiply it by 100, round of the decimals, and add a `%` sign. Use a template literal to return this to the `text` function: ```js ${Math.round(percent * 100)}% ``` Don't forget that you need a `return` statement here since you aren't using an implicit return. # --hints-- test-text ```js assert( /return\s*`\$\{\s*Math\s*\.\s*round\s*\(\s*percent\s*\*\s*100\s*\)\s*\}%`;?\s*\}\s*\)/g.test( code ) ); ``` # --seed-- ## --before-user-code-- ```html D3 Dashboard
``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```