diff --git a/E03BuildUIWithLayoutEditor2/README.md b/E03BuildUIWithLayoutEditor2/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..e603eac111caa4f1eb6ee24d2a92f3fced1d9afc
--- /dev/null
+++ b/E03BuildUIWithLayoutEditor2/README.md
@@ -0,0 +1,3 @@
+ 
+![Alt text](screenshots/ex3-1.png)
+![Alt text](screenshots/ex3-2.png)
diff --git a/E03BuildUIWithLayoutEditor2/app/src/main/java/com/example/e03builduiwithlayouteditor2/MainActivity.kt b/E03BuildUIWithLayoutEditor2/app/src/main/java/com/example/e03builduiwithlayouteditor2/MainActivity.kt
index 094f8f4fc8b10a4247b5be218c33420f57863474..48ef460ba401f69da2040a8ee0ffcb544bcfb0c0 100644
--- a/E03BuildUIWithLayoutEditor2/app/src/main/java/com/example/e03builduiwithlayouteditor2/MainActivity.kt
+++ b/E03BuildUIWithLayoutEditor2/app/src/main/java/com/example/e03builduiwithlayouteditor2/MainActivity.kt
@@ -52,7 +52,6 @@ class MainActivity : AppCompatActivity() {
     fun numberClicked(view: View?) {
         // get clicked view as a textview and it text as a string
         val text = (view as TextView).text.toString()
-        println(text)
         // modify string to int and decrease by one (array's start position 0)
         val int = text.toInt() - 1
         // show selected employee data in UI, call earlier made function
@@ -63,6 +62,7 @@ class MainActivity : AppCompatActivity() {
         super.onCreate(savedInstanceState)
         setContentView(R.layout.activity_main)
 
+        // By default show employee 1
         showEmployeeData(0)
     }
 }
\ No newline at end of file
diff --git a/E03BuildUIWithLayoutEditor2/screenshots/ex3-1.png b/E03BuildUIWithLayoutEditor2/screenshots/ex3-1.png
new file mode 100644
index 0000000000000000000000000000000000000000..a34081fb8e0f1672e70dc02f4052ce3149030e39
Binary files /dev/null and b/E03BuildUIWithLayoutEditor2/screenshots/ex3-1.png differ
diff --git a/E03BuildUIWithLayoutEditor2/screenshots/ex3-2.png b/E03BuildUIWithLayoutEditor2/screenshots/ex3-2.png
new file mode 100644
index 0000000000000000000000000000000000000000..c85719368cd525ec529032881d22cd43011d322b
Binary files /dev/null and b/E03BuildUIWithLayoutEditor2/screenshots/ex3-2.png differ