diff --git a/health.go b/health.go
index 2615229a88573329214a06f3beed04dc136abdd8..1068de3522449de3bc1e7d90151be82836ec51f7 100644
--- a/health.go
+++ b/health.go
@@ -1,5 +1,8 @@
 package health
 
+import "fmt"
+
 func Echo(message string) string {
-	return message
+	s := fmt.Sprintf("Hallo, %s", message)
+	return s
 }