Problem using an Array
What am i doing wrong here?
code: 

private void Teleporing(IPlayer player) {


  float[] FFATeles = {
      -72.0, 240, 25;
      -97, 240, -30;
      -43, 240, -26;
  }
  Random rand = new Random;
  int index = rand.Next(FFATeles.Length);
  player.Teleport({FFATeles[index]});
}​


error: IR.cs(123,0): error CS1525: Unexpected symbol `}'

Inside the array you have some semicolons, these should be replaced with commas. There are also curly brackets around the value being passed into the player.Teleport method.