VB Scripting exercise:
Exercise #3 - Fun With Strings #1
Create a function that takes in a string and an integer and returns a string that contains the original string repeated by the number specified in the integer.
Ex. Pass in: ("hello", 3) Returns: "hellohellohello"
Ex. Pass in: ("Madhuri",2) Returns: "MadhuriMadhuri"