Imports System.Collections.Generic
Namespace HelloWorldMvcApp
Public Class HomeController
Inherits System.Web.Mvc.Controller
Function Index() As ActionResult
Return View(New SampleViewModel)
Function GetAnswer(ByVal Question As String) As JsonResult
Dim index As Integer = 1 + _rnd.Next(_db.Count)
Private Shared _rnd As Random = New Random()
Private Shared _db As List(Of String) = New List(Of String) From {"Yes", "No", "Definitely, yes", "I don't know", "Looks like, yes"}