Erick wants to create a Go program that takes as input a string fileExtension and then uses the filepath.Walk() function to walk the ./homework directory and print the file names that match the input fileExtension.
The program should only print the file names that match the input extension without the path, for example:
> .txt
biology_notes.txtTip: To get the file extension, you'll need to use the filepath.Ext() function, and to print only the file names (without the path), you'll need to use the filepath.Base() function.