diff --git a/hello.html b/hello.html
index e92f92a..0c11033 100644
--- a/hello.html
+++ b/hello.html
@@ -2,6 +2,7 @@
+
Hello Team
@@ -29,6 +30,7 @@
// one by one, call all of the functions that add to the text content
updateText(elisabeth(), textContent);
updateText(bob(), textContent);
+updateText(jan(), textContent);
// Note: we need to add more function here for everyone to say hello.
// append the text content to the document
diff --git a/jan.js b/jan.js
new file mode 100644
index 0000000..d4353cc
--- /dev/null
+++ b/jan.js
@@ -0,0 +1,3 @@
+function jan() {
+ return "Jan says hello."
+}
\ No newline at end of file