diff --git a/index.html b/index.html
index 4ad9a8452a6c02d621ab5485a44407812b971f55..f8ca94fffd238bf7640c97bc103fe9ae27a24dce 100644
--- a/index.html
+++ b/index.html
@@ -13,6 +13,8 @@
 	<link rel="stylesheet" href="css/news.css">
 	<link rel="stylesheet" href="css/pizzaList.css">
 	<link rel="stylesheet" href="css/footer.css">
+
+	<script src="src/main.js"></script>
 </head>
 <body>
 	<header>
diff --git a/src/main.js b/src/main.js
index c3edb8010b2fe877c375cccfe19483fb4532447f..a73eb5eace33a7960c958568b01046ce6bdd17e5 100644
--- a/src/main.js
+++ b/src/main.js
@@ -1 +1,4 @@
-console.log('Welcome to PizzaLand 🍕 !');
\ No newline at end of file
+console.log('Welcome to', {title:'PizzaLand', emoji:'🍕'});
+console.warn("Oh oh attention");
+console.error("fatal error lol");
+console.table([['Walter', 'White'], ['Skyler', 'White'], ['Saul', 'Goodman']]);
\ No newline at end of file