A Duration is created with Duration.ofHours(25). What does duration.toDays() return, and what does duration.toDaysPart() return (Java 9+)?Duration d = Duration.ofHours(25); System.out.println(d.toDays() + " / " + d.toDaysPart());