Ask your question here! Try to give as many details as possible.
If you share code, please wrap it inside three backticks or replace the code in the next block:
In this tutorial page:
https://docs.godotengine.org/en/stable/getting_started/first_3d_game/05.spawning_mobs.html
The following line occurs. It fails:
```
var mob_spawn_location = get_node("SpawnPath/SpawnLocation")
```
But this succeeds:
```
var mob_spawn_location = get_node("SpawnLocation/SpawnPath")
```