diff --git a/index.html b/index.html
index d502b16..d6a512e 100644
--- a/index.html
+++ b/index.html
@@ -273,7 +273,7 @@
Using class browser-default
@@ -290,7 +310,7 @@
Using class browser-default
-
+
You selected: {{select.value2}}
diff --git a/js/app.js b/js/app.js
index c308b71..ac7028c 100644
--- a/js/app.js
+++ b/js/app.js
@@ -3,6 +3,7 @@ var app = angular.module('materializeApp', ['ui.materialize'])
$scope.select = {
value1: "Option1",
value2: "I'm an option",
+ value3: ["Option1", "I'm an option"],
choices: ["Option1", "I'm an option", "This is materialize", "No, this is Patrick."]
};