We create a new method `addCelestialObject` with a `CelestialObject` argument. This method adds the object in parameter to the `celestialObjects` list.
### Usage
Here is a possible ExerciseRunner.java to test your function :
```java
import java.util.List;
public class ExerciseRunner {
public static void main(String[] args) {
Galaxy galaxy = new Galaxy();
CelestialObject lune = new CelestialObject("Lune", -123.12, 392.238, 32.31);
Star betelgeuse = new Star("Betelgeuse", 128.23, -12.82, 32.328, 1289.3);
Planet naboo = new Planet("Naboo", 17.4389, 8349.1, 8943.92, betelgeuse);