## Creating our `rand` packageThe first thing we are going to is create a directory to store our new package. This is going to change based on your local environment, but I suggest creating a folder named `rand` inside of whatever directory you are working in. Once you do that, create a file named `strings.go` in the newly created directory.The `rand` directory is going to store all of our code that is part of the `rand` package we are creating. For now we will only have functions related to strings, but you are welcome to add to the package over time as your project needs evolve.In the `rand/strings.go` file we are going to store all of our functions related to random strings. As of now that is the entirety of our package, but you might find yourself updating this package over time so it is good to start with that in mind.