Not Registering Space - Add Labels to Scatter Plot Circles

So this code should pass, I’m pretty sure the space is not a special character.

Code so far


<body>
  <script>
    const dataset = [
                  [ 34,    78 ],
                  [ 109,   280 ],
                  [ 310,   120 ],
                  [ 79,    411 ],
                  [ 420,   220 ],
                  [ 233,   145 ],
                  [ 333,   96 ],
                  [ 222,   333 ],
                  [ 78,    320 ],
                  [ 21,    123 ]
                ];
    
    
    const w = 500;
    const h = 500;
    
    const svg = d3.select("body")
                  .append("svg")
                  .attr("width", w)
                  .attr("height", h);
    
    svg.selectAll("circle")
       .data(dataset)
       .enter()
       .append("circle")
       .attr("cx", (d, i) => d[0])
       .attr("cy", (d, i) => h - d[1])
       .attr("r", 5);
    
    svg.selectAll("text")
       .data(dataset)
       .enter()
       .append("text")
       // Add your code below this line
       
       .attr("x", (d) => (d[0]+5))
       .attr("y", (d) => (h-d[1]))
       .text((d) => {
         console.log(`"${d[0]+5}, ${h-d[1]}"`);
         return `"${d[0]}, ${d[1]}"`;
         });
       
       // Add your code above this line

       // The first label should have text of "34, 78", 
       // an x value of 39, and a y value of 422.
       // "34, 78"
  </script>
</body>




Your browser information:

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

Link to the challenge: