diff --git a/.DS_Store b/.DS_Store
deleted file mode 100644
index 4fed28f..0000000
Binary files a/.DS_Store and /dev/null differ
diff --git a/favicon.png b/favicon.png
new file mode 100644
index 0000000..0a18ed3
Binary files /dev/null and b/favicon.png differ
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..66679ed
--- /dev/null
+++ b/index.html
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+ My_test_work
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/index.js b/index.js
new file mode 100644
index 0000000..651a55f
--- /dev/null
+++ b/index.js
@@ -0,0 +1,24 @@
+/**
+ * JS-BASICS/CORE/CHALLENGE 01: TASK - Function Expressions
+ *
+ * Use following built-in functions:
+ * setTimeout
+ * setInterval
+ * clearInterval
+ *
+ * You should print to the console ONLY 5 messages with interval 2 seconds:
+ * "Here is message number 1"
+ * "Here is message number 2"
+ * "Here is message number 3"
+ * "Here is message number 4"
+ * "Here is message number 5"
+ */
+let myObject;
+
+myObject = {
+ a: 10,
+ b: "abc"
+}
+console.log (myObject)
+ const = 'private'
+ console.log(const)
\ No newline at end of file