package Main; public class Hedgehog { String name; public Hedgehog(String name) { this.name = name; } public String getName() { return this.name; } }