# RepoBee demo task-2 Welcome to the instructions for task-2! Complete the exercises listed below and submit the results by pushing them to your repository. ### Exercise 1 Run the tests in `FiboTest.java` with `JUnit4` and ensure that they both fail. Then add another test that tests that the thousandth number is correctly generated, run the tests again, and ensure that they all still fail. ### Exercise 2 Implement the `next()` method in `Fibo.java` such that it returns Fibonacci numbers in the correct sequence. Make sure that the tests pass, including the one you added in the previous exercise.