#100DaysOfCode Day 20: Stars By Color

Todays Mission:
Return an object with keys of the different colors of the stars whose values are arrays containing the star objects that match
Example:
{
blue: [{obj}, {obj}, {obj}, {obj}, {obj}],
white: [{obj}, {obj}],
yellow: [{obj}, {obj}],
orange: [{obj}],
red: [{obj}]
}
The Data

The Solution
