diff --git a/docs/introvideos/debugging.md b/docs/introvideos/debugging.md
index 1def8641aa..165d578c51 100644
--- a/docs/introvideos/debugging.md
+++ b/docs/introvideos/debugging.md
@@ -4,7 +4,7 @@ Area: introvideos
TOCTitle: Debugging
ContentId: cf275b3d-c1d8-4a55-b2eb-a8a744882b6a
PageTitle: Introduction to Debugging in Visual Studio Code
-DateApproved: 10/8/2021
+DateApproved: 9/9/2024
MetaDescription: Debugging is a core feature of Visual Studio Code. Learn how to configure and use the Node.js debugger in this introductory video.
MetaSocialImage: images/opengraph/introvideos-social.png
---
@@ -14,7 +14,7 @@ Debugging is a core feature of Visual Studio Code. In this tutorial, we will sho
> **Tip:** To use the debugging features demonstrated in this video for Node.js, you will need to first install [Node.js](https://nodejs.org). To follow along with the Python portion of the video, you'll need to install [Python](https://www.python.org/downloads/).
-
+
Here's the next video we recommend: [Version Control](/docs/introvideos/versioncontrol.md)
@@ -22,11 +22,18 @@ Pick another video from the list: [Introductory Videos](/docs/getstarted/introvi
## Video outline
-* Debugging that "just works".
-* Run a sample Node.js app.
-* Use a `launch.json` configuration file.
-* Single file debugging.
+* Debugging that a sample Node.js app.
+* Exploring the debugging user interface.
+* Debugging a sample C# app.
* Set a breakpoint.
+* View variables and watch variables
+* Inspect the call stack and loaded scripts.
+* Use the debug console.
+* Debug a React app.
+* Launch configurations.
+* Conditional breakpoints.
+* Edit mode.
+* Debug in Microsoft Edge.
## Next video