Work with Dynamic Data in D3 Errors

Tell us what’s happening:
I am not able to pass the test because there is not a space between 12 & USD. My output is 12USD and there needs to be a space 12 USD.

Your code so far


<body>
  <script>
    const dataset = [12, 31, 22, 17, 25, 18, 29, 14, 9];
    
    d3.select("body").selectAll("h2")
      .data(dataset)
      .enter()
      .append("h2")
      // Add your code below this line
      
     .text( (d) => (d + 'USD' ));
      
      // Add your code above this line
  </script>
</body>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.80 Safari/537.36.

Link to the challenge:

So the only thing you need to do is add the space…

I’ve done that and it is still not working.

show the code with the space then - because if I add the space I pass all the tests