diff --git a/main.py b/main.py
index 0e5c635..cbbd326 100644
--- a/main.py
+++ b/main.py
@@ -2,5 +2,7 @@
 
 arr = bytearray(b'1234567890')
 zeroize.zeroize1(arr)
+print("zeroize'ing arr...: ")
+print("checking if arr is zeroized...")
 assert arr == bytearray(b'\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00')
 print("all good, bye!")
\ No newline at end of file