You have an outer class ChristmasTree and an inner class TreeTopper. Both classes have the field color.
In the TreeTopper class create a method void sparkle.
For silver tree topper and green Christmas tree the output of sparkle should be:
Sparkling silver tree topper looks stunning with green Christmas tree!
In the outer class create a method void putTreeTopper with one string parameter color.
In this method, you should create an instance of an inner class with the parameter color, then call the method sparkle of TreeTopper.
Please, don't use private access modifier for methods.