From b80d35bf6d2efaefda604e3f512b706a2e4c508c Mon Sep 17 00:00:00 2001 From: Allwell <164483433+Allwell987@users.noreply.github.com> Date: Sat, 28 Mar 2026 05:29:23 +0100 Subject: [PATCH] Fix: Add missing word "no" in question 52 answer explanation --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b203a060..e80f6b40 100644 --- a/README.md +++ b/README.md @@ -1622,7 +1622,7 @@ sayHi(); With the `throw` statement, we can create custom errors. With this statement, you can throw exceptions. An exception can be a string, a number, a boolean or an object. In this case, our exception is the string `'Hello world!'`. -With the `catch` statement, we can specify what to do if an exception is thrown in the `try` block. An exception is thrown: the string `'Hello world!'`. `e` is now equal to that string, which we log. This results in `'Oh an error: Hello world!'`. +With the `catch` statement, we can specify what to do if an exception is thrown in the `try` block. An exception is thrown: the string `'Hello world!'`. `e` is now equal to that string, which we log. This results in `'Oh no an error: Hello world!'`.