Here my code ``` private userCartURL = 'https://dummyjson.com/carts/user/' getUserCart(userID: number): Observable<any> { return this.http.get<Cart>(`${this.userCartURL}${userID}`).pipe( tap(res => { console.log(`${this.userCartURL}${userID}`) } ) ) } ``` The result : <img width="309" height="101" alt="Image" src="https://github.com/user-attachments/assets/50f41bcd-91e1-4c8b-83dd-274ade42f1de" /> <img width="740" height="198" alt="Image" src="https://github.com/user-attachments/assets/db45fdd3-b9f0-49fc-bf49-dff7763a76b7" />