Currently, node ids are being assigned as integers, but their usage is always as strings (identifiers for nodes in graph-data-structure). The code ``` javascript property.id = counter++; ``` should become ``` javascript property.id = String(counter++); ```