Rust, 4546 bytes
I did not see a rust solution, so here ishere's my attempt:
fn main(){print||print!("{:?}",(0..b'e').collect::<Vec<_>>());}
Thanks to @ovs for pointing out the closure variant.
The range (0..b'e') is collected into a vector (using the placeholder _, letting the compiler figure out the type) and printed using the debug formatter {:?}, which "dumps" the entire vector.
The range upper bound is exclusive, and is represented using the byte literal b'e', which is equivalent to an u8 integer number literal; in this case 101 (e's ASCII value).