diff --git a/examples/rtic_bare1.rs b/examples/rtic_bare1.rs
index 11248f4e1eaa427af7aff5f812ad18ea94a4037c..1a65d00a22f2d5394c9f9b6e871a4c7771aa3ceb 100644
--- a/examples/rtic_bare1.rs
+++ b/examples/rtic_bare1.rs
@@ -45,11 +45,12 @@ const APP: () = {
 //
 //    Paste the error message:
 //
-//    ** your answer here **
+//    panicked at 'attempt to add with overflow', examples/rtic_bare1.rs:24:13
 //
 //    Explain in your own words why the code panic:ed.
 //
-//    ** your answer here **
+//    The program tried to add to 1 to an integer variable which already
+//      were on the integer max (2^32-1) thus resulting in a panic
 //
 //    Commit your answer (bare1_1)
 //