Introduction
In this challenge, you'll create a Go program that demonstrates the power of channels by building a simple data processing pipeline that transfers integers between goroutines. You'll need to create a buffered channel, write the numbers 1-5 into the channel, and then read and print each number from the channel in the order they were written.