diff --git a/hello.html b/hello.html
index e92f92a..e8e2bf8 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(padma(), textContent)
// Note: we need to add more function here for everyone to say hello.
// append the text content to the document
diff --git a/padma.js b/padma.js
new file mode 100644
index 0000000..e8ff6dd
--- /dev/null
+++ b/padma.js
@@ -0,0 +1,3 @@
+function Padma() {
+ return "Padma says hello :)"
+}
\ No newline at end of file