Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Elias Svoba
14,347 PointsPlease copy and paste
i copied this result from my local IDE: Information:03/23/2018 01:26 - Compilation completed successfully in 3s 713ms Information:javac 1.8.0_162 was used to compile java sources. My code looks like this: package com.teamtreehouse;
import java.util.Set; import java.util.TreeSet;
public class Main { public static void main(String[] args) { // write your code here System.out.printf("This is the classpath: %s %n", System.getProperty("java.class.path")); Set<String> propNames = new TreeSet<String>(System.getProperties().stringPropertyNames()); for (String propertyName : propNames) { System.out.printf("%s is %s %n", propertyName, System.getProperty(propertyName)); }
}
But i'm getting this error message Bummer! Double check that your format matches '<KEY> is <VALUE>'. Maybe i copied the wrong result.
# Paste your results here
Information:javac 1.8.0_162 was used to compile java sources
Information:03/23/2018 01:26 - Compilation completed successfully in 3s 713ms
1 Answer

Jennifer Nordell
Treehouse TeacherHi there! It looks to me like you're copy and pasting in the results of compiling the program, but you should be copy and pasting in the results from running the program.
Hope this helps!
Elias Svoba
14,347 PointsElias Svoba
14,347 PointsThanks i finally got it.