The parent_directory function returns the name of the directory that's located just above the current working directory. Remember that '..' is a relative path alias that means "go up to the parent directory". Fill in the gaps to complete this function.
The key here is that this does not literally append '..' inside the current directory path. Instead, the '..' still acts as “move up” in the directory hierarchy.