i've found the method that works for me, but it's too hacky to be true lmao ```js function() { let callerPath = new Error().stack!.split("\n")[2]!; for (let i = 2; i > 0; i--) { callerPath = callerPath.slice( callerPath.lastIndexOf("("), callerPath.lastIndexOf(":") ); } return callerPath.slice(1, callerPath.length); } ``` so i'm asking, is there no better way to do the same thing?