diff --git a/examples/bare3.rs b/examples/bare3.rs
index 3922831e1cbac5db97247ae67e05d925386ffcf5..cb1915bba25543e10d3841ab6327d613547eaa3d 100644
--- a/examples/bare3.rs
+++ b/examples/bare3.rs
@@ -71,19 +71,19 @@ fn main() -> ! {
 //
 //    What is the type of `bs`?
 //
-//    ** It is a byte slice. A pointer to an array and the length of that array. **
+//    ** It is a byte slice. A dynamic array. **
 //
 //    What is the type of `c`?
 //
-//    ** your answer here **
+//    ** It is an element of bs, a byte **
 //
 //    What is the type of `a`?
 //
-//    ** your answer here **
+//    ** An array of type u8 with length 4. **
 //
 //    What is the type of `i`?
 //
-//    ** your answer here **
+//    ** usize (32 or 64-bit unsigned.) from the str::len() **
 //
 //    Commit your answers (bare3_1)
 //