diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index e7bcaed7..00000000
--- a/.gitignore
+++ /dev/null
@@ -1,26 +0,0 @@
-# General
-.DS_Store
-.AppleDouble
-.LSOverride
-
-# Icon must end with two \r
-Icon
-
-# Thumbnails
-._*
-
-# Files that might appear in the root of a volume
-.DocumentRevisions-V100
-.fseventsd
-.Spotlight-V100
-.TemporaryItems
-.Trashes
-.VolumeIcon.icns
-.com.apple.timemachine.donotpresent
-
-# Directories potentially created on remote AFP share
-.AppleDB
-.AppleDesktop
-Network Trash Folder
-Temporary Items
-.apdisk
diff --git a/06_09 Code Challenge/.idea/misc.xml b/06_09 Code Challenge/.idea/misc.xml
new file mode 100644
index 00000000..d46cb7fb
--- /dev/null
+++ b/06_09 Code Challenge/.idea/misc.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/06_09 Code Challenge/.idea/modules.xml b/06_09 Code Challenge/.idea/modules.xml
new file mode 100644
index 00000000..1f6d2c35
--- /dev/null
+++ b/06_09 Code Challenge/.idea/modules.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/06_09 Code Challenge/.idea/vcs.xml b/06_09 Code Challenge/.idea/vcs.xml
new file mode 100644
index 00000000..6c0b8635
--- /dev/null
+++ b/06_09 Code Challenge/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/06_09 Code Challenge/.idea/workspace.xml b/06_09 Code Challenge/.idea/workspace.xml
new file mode 100644
index 00000000..6d35bbf5
--- /dev/null
+++ b/06_09 Code Challenge/.idea/workspace.xml
@@ -0,0 +1,109 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1600051318537
+
+
+ 1600051318537
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/06_09 Code Challenge/06_09 Code Challenge.iml b/06_09 Code Challenge/06_09 Code Challenge.iml
new file mode 100644
index 00000000..c90834f2
--- /dev/null
+++ b/06_09 Code Challenge/06_09 Code Challenge.iml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/06_09 Code Challenge/out/production/06_09 Code Challenge/Main.class b/06_09 Code Challenge/out/production/06_09 Code Challenge/Main.class
new file mode 100644
index 00000000..ce4210f8
Binary files /dev/null and b/06_09 Code Challenge/out/production/06_09 Code Challenge/Main.class differ
diff --git a/06_09 Code Challenge/out/production/06_09 Code Challenge/Student.class b/06_09 Code Challenge/out/production/06_09 Code Challenge/Student.class
new file mode 100644
index 00000000..19c3477c
Binary files /dev/null and b/06_09 Code Challenge/out/production/06_09 Code Challenge/Student.class differ
diff --git a/06_09 Code Challenge/src/Main.java b/06_09 Code Challenge/src/Main.java
new file mode 100644
index 00000000..04153843
--- /dev/null
+++ b/06_09 Code Challenge/src/Main.java
@@ -0,0 +1,18 @@
+public class Main {
+
+ public static void main(String[] args){
+ Student A = new Student("Andy","Smith",3.6,2022,"Computer Science");
+ Student B = new Student("Eric","Homes",3.8,2024,"Math");
+
+ System.out.println("Student A first name:" + A.firstName);
+ System.out.println("Student A last name:" + A.lastName);
+ System.out.println("Student A's major:" + A.declaredMajor);
+
+ System.out.println("Student B first name:" + B.firstName);
+ System.out.println("Student B graduate year:" + B.yrToGrad);
+ B.incrementYrToGrad();
+ System.out.println("Student B graduate year after change: " + B.yrToGrad);
+ //System.out.println();
+ //System.out.println();
+ }
+}
diff --git a/06_09 Code Challenge/src/Student.java b/06_09 Code Challenge/src/Student.java
new file mode 100644
index 00000000..671d71dc
--- /dev/null
+++ b/06_09 Code Challenge/src/Student.java
@@ -0,0 +1,23 @@
+public class Student {
+ String firstName;
+ String lastName;
+ double GPA;
+ int yrToGrad;
+ String declaredMajor;
+
+ public Student(String firstName,
+ String lastName,
+ double GPA,
+ int yrToGrad,
+ String declaredMajor){
+ this.firstName = firstName;
+ this.lastName = lastName;
+ this.GPA = GPA;
+ this.yrToGrad = yrToGrad;
+ this.declaredMajor = declaredMajor;
+ }
+
+ public void incrementYrToGrad(){
+ this.yrToGrad= this.yrToGrad +1;
+ }
+}