diff --git a/rubric.md b/rubric.md
new file mode 100644
index 0000000..4a2ee7e
--- /dev/null
+++ b/rubric.md
@@ -0,0 +1,26 @@
+# Project Feedback + Evaluation
+
+## Project Workflow
+
+>Did you complete the user stories, wireframes, task tracking, and/or ERDs, as specified above? Did you use source control as expected for the phase of the program you’re in (detailed above)?
+
+**Meets/Exceeds Expectations** Nice readme, especially your Approach and Unsolved Problems sections! As projects get more complex, you'll want to be sure to include more detailed installation instructions for someone who wants to install a local version of your full stacks. For a browser-only app like this, though, you're good to go.
+
+## Technical Requirements
+
+>Did you deliver a project that met all the technical requirements? Given what the class has covered so far, did you build something that was reasonably complex?
+
+**Meets Expectations** This is a clean, full-featured game with nice UI (love the big color circle!). Deployed successfully. I'd love you see you implement the features mentioned in your readme. Well done!
+
+## Code Quality
+
+>Did you follow code style guidance and best practices covered in class, such as spacing, modularity, and semantic naming? Did you comment your code as your instructors have in class?
+
+**Meets Expectations** Great comments, formatting, and semantic naming. It's really quite DRY as it is! A couple of spacing issues, but well done!
+
+
+## Problem Solving
+
+>Are you able to defend why you implemented your solution in a certain way? Can you demonstrate that you thought through alternative implementations?
+
+**Meets Expectations** Really nice work, Alice! Your solution shows a real attention to detail and precision. I enjoyed playing it :+1:
diff --git a/script.js b/script.js
index 4a576c8..38ebadf 100644
--- a/script.js
+++ b/script.js
@@ -43,7 +43,7 @@ $(document).ready(function(){
gainsboro = {
colorBoxColor:"____boro",
hint:"gainsboro"
- }
+ }//(ERICA) Are color and hint reversed for this one??
];
//start
@@ -100,4 +100,5 @@ $(document).ready(function(){
$(".answer").val("");
$(".helpDisplay").html("");
});
+ //One way to make this even DRY-er would be to pull out the lines of code that are repeated in both Skip and Submit, and wrap them in a function that can be called in both, similar to next.
});