diff --git a/files/en-us/web/api/console/index.md b/files/en-us/web/api/console/index.md index 666c264d12e7470..d253165d482496d 100644 --- a/files/en-us/web/api/console/index.md +++ b/files/en-us/web/api/console/index.md @@ -89,7 +89,7 @@ console.log(someObject); The output looks something like this: -```bash +```plain {str:"Some text", id:5} ``` @@ -105,7 +105,7 @@ console.info("My first car was a", car, ". The object is:", someObject); The output will look like this: -```bash +```plain My first car was a Dodge Charger. The object is: {str:"Some text", id:5} ```